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 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
# 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), 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(3) #default value is 2, check the documentation for a list of all supported attributes
print(news.titles) #returns news titles
print(news.descripion) #returns news description
Getting anime info and recommendations
anime = anime("dr stone")
recommendations = anime.recommend()
print(anime.url)
print(anime.name)
print(anime.description) #check the documentation for a list of all supported attributes
print(recommendations) #returns a list of anime recommendations
Anime Lyrics
lyrics = anilyrics("Ashiato")
print(lyrics.romaji)
Animec Documentation
The Official Documentation for animec can be found here.
Credits
Author: DriftAsimov
GitHub: https://github.com/DriftAsimov
Language Used: Python
References: 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.3.tar.gz
(10.1 kB
view details)
Built Distribution
File details
Details for the file animec-0.1.3.tar.gz
.
File metadata
- Download URL: animec-0.1.3.tar.gz
- Upload date:
- Size: 10.1 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 | 6afa48fcdedb91e929b3d7074a873ea5543528b069326a760d54192caa88bf61 |
|
MD5 | 33faa5c3b6a5cf176865e19a2b80dc04 |
|
BLAKE2b-256 | 6e5ff264c3d19e3d4b4c52482b487e805f0cd20915dd0f53847fb52a468f29c7 |
File details
Details for the file animec-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: animec-0.1.3-py3-none-any.whl
- Upload date:
- Size: 8.5 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 | 088abf2ac5d5d84a18d534a3d06cb59511ba59bc4264649337d75dbbd591ea7d |
|
MD5 | 612d74c79f57ff7792115d07b3c38f2c |
|
BLAKE2b-256 | 6d7ddaffa0d742e9ec23ab7ecdd13fa414d8db3c6d6643917be2fe9eadbf0dbb |