Metadata-Version: 2.1
Name: anilistpy
Version: 0.0.1.2
Summary: API wrapper for anilist.co
Home-page: https://github.com/aadityaaryal/anilistpy
Author: Aaditya Aryal
Author-email: aryalaadi123@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Anilistpy
An easy to use wrapper for anilist.co APIv2


```
pip install anilistpy
```

note: this wraper is in very early stage and more features are to come.

Documenation on the the [gh-page](https://aadityaaryal.github.io/anilistpy)

## example
```py

import anilistpy #pip install anilistpy

id = 1 #id of the anime 

anime = anilistpy.Anime(id)

print(anime.title()) #prints the romaji title of the anime
print(anime.episodes()) #prints the ammount of episodes of the anime
print(anime.genres()) #list of genres the anime falls under
print(anime.tags()) #dict of tags this anime has on anilist
print(anime.studios()) #name of studios involved

mid = 30013 #id of manga

manga = anilistpy.Manga(mid)

print(manga.title()) #prints the romaji title of the manga
print(manga.chapters()) #prints the ammount of chapters in the manga
print(manga.genres()) #list of genres the manga falls under
print(manga.tags()) #dict of tags this manga has on anilist
print(manga.staffs()) #name of staffs involved

```

