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.6 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
Python 3.7 or higher
aiohttp (for async support)
typing_extensions (for Python <= 3.8)
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.
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 animeapi
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
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_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 = api.get_list_index()
print(animeapi[: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(True)
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
Built Distribution
File details
Details for the file animeapi-py-3.4.0.tar.gz
.
File metadata
- Download URL: animeapi-py-3.4.0.tar.gz
- Upload date:
- Size: 22.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc1fdb9eca987d94787592f8a53bcdacd9e11716c0647179a1a3b660d450d490 |
|
MD5 | d8e5d2965ec5f4ddec724e830e7b1f2a |
|
BLAKE2b-256 | d90f805ff0d666cd2f65128ab4f4f3a54f5a77af96942bda2bb225c5458715d1 |
File details
Details for the file animeapi_py-3.4.0-py3-none-any.whl
.
File metadata
- Download URL: animeapi_py-3.4.0-py3-none-any.whl
- Upload date:
- Size: 23.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06288fb8e18550b150acb3ad74e1c6d8f0cff40e070c05b69a59e3c4e25e1104 |
|
MD5 | 40ea5b17571550fb7065157e22c35c1c |
|
BLAKE2b-256 | 411a8fc5f6620d1875155422ca0a4c8baa5e24411aee4a15f750911f2bcc3c58 |