Skip to main content

A Python wrapper for the AnimeAPI by nattadasu with type hints and additional async support.

Project description

animeapi-python is a Python wrapper for the AnimeAPI made by nattadasu.

The wrapper is released with type hints and async support in mind for ease of use and is compatible with Python 3.7 or higher.

Installation

pip install animeapi-py

Depending on your system, you may need to use pip3 instead of pip, or sudo pip instead of pip.

Requirements

Usage

import animeapi

with animeapi.AnimeAPI() as api:
    # Get anime relation data for the anime with ID 1 on MyAnimeList
    mal = api.get_anime_relations(1, animeapi.Platform.MYANIMELIST)
    print(mal)

    # Get list of anime available on AniList
    anilist = api.get_list_anime_relations(animeapi.Platform.ANILIST)
    print(anilist[:2])  # Print first two results

    # Get dictionary of anime available on Kitsu
    kitsu = api.get_dict_anime_relations(animeapi.Platform.KITSU)
    print(kitsu['1'])  # Print data for Cowboy Bebop

We recommend using the with statement to create an instance of AnimeAPI as we designed the wrapper to be easy to switch between sync and async, although you can also use AnimeAPI directly on sync methods only.

Custom Headers

You can pass custom headers to the API client, which is useful for APIs that require authorization (e.g., ids.moe):

import animeapi

# Using custom headers for ids.moe
headers = {"Authorization": "Bearer YOUR_TOKEN_HERE"}

with animeapi.AnimeAPI(base_url="https://ids.moe", headers=headers) as api:
    # Get anime relation data with custom headers
    mal = api.get_anime_relations(1, animeapi.Platform.MYANIMELIST)
    print(mal)

Asyncronous Usage

Similarly, for async, you just need to replace AnimeAPI with AsyncAnimeAPI and use await on the methods.

You must use the wrapper in with statement, or you will receive RuntimeError exception.

import asyncio
import animeapi

async def main():
    async with animeapi.AsyncAnimeAPI() as api:
        # Get anime relation data for the anime with ID 1 on MyAnimeList
        mal = await api.get_anime_relations(1, animeapi.Platform.MYANIMELIST)
        print(mal)

        # Get list of anime available on AniList
        anilist = await api.get_list_anime_relations(animeapi.Platform.ANILIST)
        print(anilist[:2])  # Print first two results

        # Get dictionary of anime available on Kitsu
        kitsu = await api.get_dict_anime_relations(animeapi.Platform.KITSU)
        print(kitsu['1'])  # Print data for Cowboy Bebop

if __name__ == "__main__":
    asyncio.run(main())

Custom headers can also be used with async:

import asyncio
import animeapi

async def main():
    headers = {"Authorization": "Bearer YOUR_TOKEN_HERE"}

    async with animeapi.AsyncAnimeAPI(base_url="https://ids.moe", headers=headers) as api:
        mal = await api.get_anime_relations(1, animeapi.Platform.MYANIMELIST)
        print(mal)

if __name__ == "__main__":
    asyncio.run(main())

Documentation

You can find the documentation for the wrapper here

Available Methods

get_anime_relations(title_id: str | int, platform: str | Platform, media_type: str | TraktMediaType | TmdbMediaType | None = None, title_season: int | None) -> AnimeRelation

This method equals to the /:platform/:title_id endpoint on the API.

# Get anime relation data for the anime with ID 1 on MyAnimeList
mal = api.get_anime_relations(1, animeapi.Platform.MYANIMELIST)
print(mal)

# Get anime relation data for Trakt shows with season
trakt = api.get_anime_relations(152334, animeapi.Platform.TRAKT,
                                 media_type=animeapi.TraktMediaType.SHOWS,
                                 title_season=3)
print(trakt)

# Get anime relation data for TMDB TV shows
tmdb = api.get_anime_relations(12345, animeapi.Platform.THEMOVIEDB,
                                media_type=animeapi.TmdbMediaType.TV)
print(tmdb)

# Get anime relation data for The TVDB with season
tvdb = api.get_anime_relations(76885, animeapi.Platform.THETVDB,
                                title_season=1)
print(tvdb)

get_dict_anime_relations(platform: str | Platform) -> dict[str, AnimeRelation]

This method equals to the /:platform endpoint on the API. Use this method if you want to get complete data for all anime available on a platform and wanted to be able to access the data by the anime ID faster.

# Get dictionary of anime available on Kitsu
kitsu = api.get_dict_anime_relations(animeapi.Platform.KITSU)
print(kitsu['1'])  # Print data for Cowboy Bebop

get_list_anime_relations(platform: str | Platform) -> list[AnimeRelation]

This method equals to the /:platform() endpoint on the API.

# Get list of anime available on AniList
anilist = api.get_list_anime_relations(animeapi.Platform.ANILIST)
print(anilist[:2])  # Print first two results

get_list_index() -> list[AnimeRelation]

This method equals to the /animeapi endpoint on the API.

# Get list of anime available on AnimeAPI
animeapi_list = api.get_list_index()
print(animeapi_list[:2])  # Print first two results

get_status() -> ApiStatus

This method equals to the /status endpoint on the API.

# Get status of AnimeAPI
status = api.get_status()
print(status)

get_heartbeat() -> Heartbeat

This method equals to the /heartbeat endpoint on the API.

# Get heartbeat of AnimeAPI
heartbeat = api.get_heartbeat()
print(heartbeat)

get_updated_time() -> Updated

This method equals to the /updated endpoint on the API.

# Get last updated time of AnimeAPI
updated = api.get_updated_time()
print(updated)
print(updated.datetime())  # Convert to datetime class

License

animeapi-py is licensed under the GNU Affero General Public License v3.0.

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

animeapi_py-3.8.1.tar.gz (25.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

animeapi_py-3.8.1-py3-none-any.whl (27.0 kB view details)

Uploaded Python 3

File details

Details for the file animeapi_py-3.8.1.tar.gz.

File metadata

  • Download URL: animeapi_py-3.8.1.tar.gz
  • Upload date:
  • Size: 25.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for animeapi_py-3.8.1.tar.gz
Algorithm Hash digest
SHA256 9ed10f8207f1ccd7949ee3728285f4aced9a5ec57f71d211594ca5dc356fdea5
MD5 b7424f9521e4637010790b24b281b5c3
BLAKE2b-256 28a2f868bba3b6399e2c953f8796fa90c8de91f797ad0fe19c7e2c536cd0092f

See more details on using hashes here.

File details

Details for the file animeapi_py-3.8.1-py3-none-any.whl.

File metadata

  • Download URL: animeapi_py-3.8.1-py3-none-any.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for animeapi_py-3.8.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c29f6e633d17bb613f459aa6514c0baab7ae325881f8a109eb6e4b3be5c22827
MD5 6bb882600bf4329a76d2dc910f6abfff
BLAKE2b-256 ba986775d71cf7d88d554e8394f5ce5cda90041c99fdf1b2b60af02001e8c790

See more details on using hashes here.

Supported by

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