Animec
A module to get data about anime characters, news, info, lyrics and more.
The module scrapes myanimelist to parse requested data.
If you wish to see a feature, please raise an issue. We will surely work on it.
You can also join our Discord to get regular updates about the module.
See the Docs for a complete documentation: https://animec.readthedocs.io/en/latest/.
Installation and Usage
To install the module:
pip install animec
To import the module:
import animec
from animec import *
Examples
result = Charsearch("okabe rintarou")
print(result.title, result.url, result.image_url, sep="\n")
'''
Output: (As retrieved from myanimelist), check the documentation for a list of all supported attributes
Rintarou Okabe (岡部 倫太郎)
https://myanimelist.net/character/35252/Rintarou_Okabe
https://cdn.myanimelist.net/images/characters/6/122643.jpg
'''
Requesting anime news
news = Aninews()
print(news.titles)
print(news.descripion)
Getting anime info and recommendations
anime = Anime("dr stone")
print(anime.url)
print(anime.name)
print(anime.description)
print(anime.recommend())
Anime Lyrics
lyrics = Anilyrics("Ashiato")
print(lyrics.romaji())
Links