Shotgun provides a simple Python-based API for accessing Shotgun and integrating with other tools. This is the official API that is maintained by Shotgun Software (support@shotgunsoftware.com)
The latest version can always be found at http://github.com/shotgunsoftware/python-api
- Shotgun server v2.4.12+.
- Python v2.6 - v2.7.
- Install simplejson 2.1.6
Tutorials and detailed documentation about the Python API are available at http://developer.shotgunsoftware.com/python-api).
Some useful direct links:
You can see the full history of the Python API on the documentation site.
Integration and unit tests are provided.
- All tests require the nose unit testing tools, and a
tests/configfile (you can copy an example fromtests/example_config). - Tests can be run individually like this:
nosetest tests/test_client.py test_clientandtests_unituse mock server interaction and do not require a Shotgun instance to be available (no modifications totests/configare necessary).test_apiandtest_api_longdo require a Shotgun instance, with a script key available for the tests. The server and script user values must be supplied in thetests/configfile. The tests will add test data to your server based on information in your config. This data will be manipulated by the tests, and should not be used for other purposes.- To run all of the tests, use the shell script
run-tests.