KidiXDev / pymal_basic

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pymal_basic

Python Basic API wrapper for MyAnimeList

WORK ON PROGRESS

Installation

pip install pymal_basics

Usage

Basic Usage:

from pymal_basic import Anime

obj = Anime('YOUR CLIENT ID')

ress = obj.SearchAnime('naruto', 4)
final_ress = obj.GetAnime(ress)

# You can process more data by processing the results
for anime in final_ress:
    print(f"Title: {anime['title']}, ID: {anime['id']}")

About

License:MIT License


Languages

Language:Python 100.0%