mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
16 lines
422 B
Python
16 lines
422 B
Python
# import ftrack_api as local session
|
|
import ftrack_api
|
|
#
|
|
session = ftrack_api.Session()
|
|
|
|
# ----------------------------------
|
|
|
|
|
|
def test_event(event):
|
|
'''just a testing event'''
|
|
# start of event procedure ----------------------------------
|
|
for entity in event['data'].get('entities', []):
|
|
print(100*"_")
|
|
print(entity['changes'])
|
|
|
|
# end of event procedure ----------------------------------
|