A python wrapper for the unofficial MyAnimeList API called Jikan. Intended to be used for fetching anime and manga data from MyAnimeList.
Installation
git clone https://github.com/goesbyabhi/jikan.py
cd jikan.py
pip install -r requirements.txt
Usage
- Example to find an anime using the id obtained from MyAnimeList
from malwrapper import Anime
anime = Anime(id=45613)
response = anime.info()
print(response)
- Example to find an anime using keywords
from malwrapper import Anime
anime = Anime(name='naruto')
response = anime.search()
print(response)