An Asynchronous and Synchronous API Wrapper for the Imgbb API.
Install imgbbpy via pip
.
pip install imgbbpy
imgbbpy requires Python 3.7
Asynchronous usage:
import asyncio
from imgbbpy.aio import Client
async def main():
client = Client('API KEY')
image = await client.upload(file='path/to/image.jpeg')
print(image.url)
await client.close()
asyncio.get_event_loop().run_until_complete(main())
Synchronous usage:
from imgbbpy import Client
client = Client('API KEY')
image = client.upload(file='path/to/image.png')
print(image.url)
You can get an API Key from https://api.imgbb.com.
Documentation can be found in the documentation.md
file.
MIT, see LICENSE for more details.