Last active
June 8, 2018 00:25
-
-
Save yamadaaaaaaa/f1898d3730ab32782bd18286b1b2867c to your computer and use it in GitHub Desktop.
SG_sample2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import shotgun_api3 | |
sg = shotgun_api3.Shotgun('https://test.shotgunstudio.com', script_name='test_tool', api_key='0a1b2c3d4e5f9g7h8i9j') | |
result = sg.schema_field_read('Asset').keys() | |
print(result) | |
sg.close() | |
# result | |
# ['code','tasks',******] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment