Deepomatic / deepomatic-client-python

Python Client
Other
14 stars 0 forks source link
hacktoberfest

deepomatic-client-python

Deepomatic API Client for Python.

This client have been made in order to help you integrating our services within your apps in python.

Tested on python 3.8, 3.9, 3.10, 3.11.

API Documentation

https://docs.deepomatic.com/deepomatic-api-v0-7

Installation

pip install deepomatic-api

Client

Initialize a client. Does not make any call to the server.

from deepomatic.api.client import Client

# If you don't have your credentials, contact us at support@deepomatic.com
client = Client(api_key=api_key, user_agent_prefix='my-app/1.0.0')

app_id is now optional but if you don't put it, you have to ensure that the api_key is a named parameter to the function

Client methods

All client methods can be found in deepomatic/api/client.py and detail for each type of resource is located in deepomatic/api/resources.

Examples

You will find examples of usage in demo.py.