aiobooru

A danbooru API helper using aiohttp


License
MIT
Install
pip install aiobooru==0.1.1

Documentation

Aiobooru - A package for Danbooru API using aiohttp

Use like:

import aiobooru
import asyncio

def run():
    async with aiobooru.Booru() as a:
        p = await a.post(1)
        await p.download('image.jpg')

asyncio.run(run())