Skip to content

Asynchronous python client for web image-processor service API server.

License

Notifications You must be signed in to change notification settings

weibeu/image-processor-client

Repository files navigation

image-processor-client

Build Status Documentation Status

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

Installation

To install image processor client library, you can use following command:

python3 -m pip install image-processor-client

Basic Example

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

Documentation

For all of the available methods and full API reference, check our documentaion.

Releases

No releases published

Packages

No packages published

Languages