Metadata-Version: 2.1
Name: image-processor-client
Version: 2.0.3
Summary: Asynchronous python client for image-processor server (https://github.com/thec0sm0s/image-processor).
Home-page: https://github.com/thec0sm0s/image-processor-client
Author: □ | The Cosmos
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Internet
Classifier: Topic :: Utilities
Requires-Dist: aiohttp
Provides-Extra: docs
Requires-Dist: sphinx (==1.8.3) ; extra == 'docs'

# image-processor-client
[![Build Status](https://thecosmos.visualstudio.com/image-processor-client/_apis/build/status/image-processor-client?branchName=master)](https://thecosmos.visualstudio.com/image-processor-client/_build/latest?definitionId=8?branchName=master)
[![Documentation Status](https://readthedocs.org/projects/image-processor-client/badge/?version=latest)](https://image-processor-client.readthedocs.io/en/latest/?badge=latest)

Asynchronous image-processor python client for [image-processor] API server.


### Installation
To install image processor client library, you can use following command:
```sh
python3 -m pip install image-processor-client
```

### Basic Example
```python
import asyncio
from image_processor_client import Client

client = Client()

loop = asyncio.get_event_loop()
meme_bytes = loop.run_until_complete(client.memes.rip("Python", "https://i.imgur.com/U5QR5SY.png"))

with open("rip_meme.png", "wb") as meme_file:
    meme_file.write(meme_bytes)


```


### Requiremets
* Python 3.6+
* `aiohttp`
* [image-processor] API Server (if self-hosted)


### Documentation
For all of the available methods and full API reference, check our [documentaion]. 

[image-processor]: https://github.com/thec0sm0s/image-processor
[documentaion]: https://image-processor-client.readthedocs.io/en/latest/


