A MyAnimeListAPI wrapper written in Python.
Project description
mal.py
A MyAnimeList API wrapper written in Python.
The objective for now is to cover queries for the publicly available information, support for taking actions on a user list is not planned.
Features
- anime and manga search given a keyword
- fetch details of anime or manga given its id or its url
- accessing public lists of users
- retrieving seasonal anime
- retrieve rankings for anime and manga
- retrieve forum boards and discussions
The next features that are planned to be implemented are:
- retrieve more information on recommendations and related entries
Installation
Python 3.8+ is needed.
To use this library:
- (optional) create a virtual environment
python -m venv .venv
and activate it - install with
pip install mal-api.py
- to perform requests you need an API token log in on MAL -> account settings -> API -> create ID
Usage
from mal import client
cli = client.Client('your token here')
anime = cli.get_anime(16498)
anime.title
>> Shingeki_no_Kyojin
Full documentation available here.
Code samples can be found in the examples folder.
Logging
This library uses the logging module to keep track of configuration changes and possible network errors. If you want to see the logs you need to configure the logging module yourself, for example:
import logging
logging.basicConfig(logging.level=INFO)
For more information on how to use logging refer to the documentation of python:
This project is still a work in progress, if you have problems or find bugs feel free to open an issue or start a discussion.
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
Built Distribution
Hashes for mal_api.py-0.6.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf3bf1e8ee6861e05deeacfd6be4f004595debf218b63ae8f2930cf6c1c1c432 |
|
MD5 | 8ed436faa91cf6635c538f6f7c87897e |
|
BLAKE2b-256 | 412f2a45aca63674dbac9a1f489cdb3cac4f11baac92cd08fd4348b348057877 |