Python client for Transloadit. See Transloadit API documentation.
To use pytransloadit, install the pip package from github.
pip install git+https://github.com/isaacm/pytransloadit.git
from pytransloadit import client
cl = client.TransloadItClient('auth-key', 'auth-secret')
api = client.TransloadItAPI(client=cl)
# list all assemblies
api.assemblies.get()
# list all templates
api.templates.get()