A module to get data about anime characters, news, info, lyrics and more.
Project description
Animec
A module to get data about anime characters, news, info, lyrics and more. The API 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.
Installation and Usage
To install the module:
pip install animec
To import the module:
import animec
# OR
from animec import *
Examples
Extracting an anime character's data
result = charsearch("okabe rintarou")
print(result.title, result.url, result.image_url, sep="\n")
'''
Output: (As retrieved from myanimelist)
Rintarou Okabe (岡部 倫太郎)
https://myanimelist.net/character/35252/Rintarou_Okabe
https://cdn.myanimelist.net/images/characters/6/122643.jpg
'''
Requesting anime news
news = aninews(3) #default value is 2
print(news.titles) #returns news titles
print(news.links) #returns news links
print(news.descripion) #returns news description
print(news.images) #returns news images
Getting anime info and recommendations
anime = anime("dr stone")
recommendations = anime.recommend()
print(anime.url)
print(anime.name)
print(anime.description) #check the documendation for a list of all supported attributes
print(recommendations) #returns a list of anime recommendations
Anime Lyrics
lyrics = anilyrics("Ashiato")
print(lyrics.romaji)
API Documentation
List of properties and methods currently supported by animec. Official documentation coming soon!
charsearch()
----- .title
----- .url
----- .image_url
aninews()
----- .titles
----- .links
----- .description
----- .images
anime()
----- .url
----- .name
----- .description
----- .poster
----- .title_english
----- .title_jp
----- .alt_titles
----- .opening_themes
----- .ending_themes
----- .episodes
----- .aired
----- .broadcast
----- .rating
----- .ranked
----- .popularity
----- .favorites
----- .recommend()
anilyrics()
----- .romaji
----- .english
----- .kanji
Credits
Author: DriftAsimov
GitHub: https://github.com/DriftAsimov
Language Used: Python
Sites:
https://myanimelist.net/
https://www.animesonglyrics.com/
Contact Us
Mail: driftasimov@gmail.com
Discord: Drift Asimov#3338 | https://discord.gg/x3qAZV3
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
animec-0.1.21.tar.gz
(7.0 kB
view details)
Built Distribution
File details
Details for the file animec-0.1.21.tar.gz
.
File metadata
- Download URL: animec-0.1.21.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 350e20661e4cf0db78a1e00b91750d364ef36892eac18b8e19fa3fbe64a4614c |
|
MD5 | 27488df7b8d830d7993dfa924d10eee5 |
|
BLAKE2b-256 | b625b311d07adff124a3f08dc15973429889d6f3d50ba79b09f4184a8a5f8985 |
File details
Details for the file animec-0.1.21-py3-none-any.whl
.
File metadata
- Download URL: animec-0.1.21-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b38cd7290803fc15284303b33c6759e0721d3822ba34c7adcdf17a15649ac8c2 |
|
MD5 | beaf3e54250110f6354d3fe258df393e |
|
BLAKE2b-256 | 0bbbd34ad98125cc966b85548aedd74d27013f0483aadc7c52ed2aca0310bfad |