Skip to main content

A small unofficial AniList API wrapper made for python

Project description

Basic examples

Character

import nino
import asyncio


async def test():
    async with nino.Client() as client:
        paginator = await client.character_search("Nino")
        print(paginator.characters)

asyncio.run(test())

Anime

import nino
import asyncio


async def test():
    async with nino.Client() as client:
        paginator = await client.anime_search("Overlord", per_page=4)
        for _ in range(4):
            print(await paginator.next())

asyncio.run(test())

Documentation

Nino

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nino-0.2.4.tar.gz (8.5 kB view hashes)

Uploaded Source

Built Distribution

nino-0.2.4-py3-none-any.whl (10.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page