aiomangadex

A simple asynchronous API wrapper for mangadex.org.


Keywords
Manga, API
License
Apache-2.0
Install
pip install aiomangadex==1.0.0

Documentation

aiomangadex

Build Status Documentation Status

An asynchronous API wrapper for mangadex.

Basic Usage

import aiomangadex
import aiohttp
import asyncio

async def fetch(id):
    session = aiohttp.ClientSession()
    manga = await aiomangadex.fetch_manga(id, session)
    await session.close()
    print(manga.description)

asyncio.get_event_loop().run_until_complete(fetch(34198))

For more info, visit the docs here.