Metadata-Version: 2.1
Name: deepomatic-api
Version: 0.8.0
Summary: Deepomatic API client
Home-page: https://github.com/deepomatic/deepomatic-client-python
Author: deepomatic
Author-email: support@deepomatic.com
License: MIT License
Project-URL: Product, https://www.deepomatic.com
Project-URL: Documentation, https://developers.deepomatic.com/docs/v0.7
Project-URL: Source, https://github.com/deepomatic/deepomatic-client-python
Project-URL: Tracker, https://github.com/deepomatic/deepomatic-client-python/issues
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown
Requires-Dist: numpy (<2,>=1.10.0)
Requires-Dist: promise (<3,>=2.1)
Requires-Dist: six (<2,>=1.10.0)
Requires-Dist: requests (<3,>=2.19.0)
Requires-Dist: tenacity (<5,>=4.12.0)

# deepomatic-client-python

[Deepomatic](https://www.deepomatic.com) 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 2.7, 3.4, 3.5, 3.6.

# API Documentation

https://developers.deepomatic.com/docs/v0.7

# Installation

```bash
pip install deepomatic-api
```

# Client

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

```python
from deepomatic.api.client import Client

# You should find your app_id and api_key in your account on https://developers.deepomatic.com/dashboard
client = Client(app_id, api_key)
```

### Client methods

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

### Examples

You will find examples of usage in [demo.py](demo.py).

# Bugs

Please send bug reports to support@deepomatic.com or open an issue here.


