gitextract_6psy39k2/ ├── .coveragerc ├── .flake8 ├── .gitattributes ├── .gitignore ├── .pre-commit-config.yaml ├── HISTORY.rst ├── LICENSE ├── README.md ├── SECURITY.md ├── azure-pipelines-templates/ │ ├── run-tests.yml │ └── type_checking.yml ├── azure-pipelines.yml ├── developer/ │ └── README.md ├── docs/ │ ├── advanced/ │ │ ├── iron_python.rst │ │ └── packaging.rst │ ├── advanced.rst │ ├── authentication.rst │ ├── changelog.rst │ ├── cookbook/ │ │ ├── attachments.rst │ │ ├── examples/ │ │ │ ├── ami_handler.rst │ │ │ ├── ami_version_packager.rst │ │ │ ├── basic_create_shot.rst │ │ │ ├── basic_create_shot_task_template.rst │ │ │ ├── basic_create_version_link_shot.rst │ │ │ ├── basic_delete_shot.rst │ │ │ ├── basic_find_shot.rst │ │ │ ├── basic_sg_instance.rst │ │ │ ├── basic_update_shot.rst │ │ │ ├── basic_upload_thumbnail_version.rst │ │ │ └── svn_integration.rst │ │ ├── smart_cut_fields.rst │ │ ├── tasks/ │ │ │ ├── split_tasks.rst │ │ │ ├── task_dependencies.rst │ │ │ └── updating_tasks.rst │ │ ├── tasks.rst │ │ ├── tutorials.rst │ │ └── usage_tips.rst │ ├── cookbook.rst │ ├── index.rst │ ├── installation.rst │ └── reference.rst ├── setup.py ├── shotgun_api3/ │ ├── __init__.py │ ├── lib/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── __init__.py │ │ ├── certifi/ │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cacert.pem │ │ │ ├── core.py │ │ │ └── py.typed │ │ ├── httplib2/ │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── cacerts.txt │ │ │ ├── certs.py │ │ │ ├── error.py │ │ │ ├── iri2uri.py │ │ │ └── socks.py │ │ ├── mockgun/ │ │ │ ├── __init__.py │ │ │ ├── errors.py │ │ │ ├── mockgun.py │ │ │ └── schema.py │ │ ├── pyparsing.py │ │ ├── requirements.txt │ │ └── sgtimezone.py │ ├── py.typed │ └── shotgun.py ├── software_credits ├── tests/ │ ├── __init__.py │ ├── base.py │ ├── empty.txt │ ├── example_config │ ├── mockgun/ │ │ ├── schema.pickle │ │ └── schema_entity.pickle │ ├── requirements.txt │ ├── run_appveyor.bat │ ├── test_api.py │ ├── test_api_long.py │ ├── test_client.py │ ├── test_config_file │ ├── test_mockgun.py │ ├── test_proxy.py │ └── test_unit.py └── update_httplib2.py