Metadata-Version: 2.1
Name: Anipick
Version: 1.4.1
Summary: Anime module for search Anime, Manga, Quote info
Home-page: https://github.com/pengode-handal/anipick
Author: Kenzawa/Babwa
Author-email: babwaxgura@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

## anpick
anime and manga module to get infomations from [myanimelist](https://myanimelist.net)

## Instalation
Terminal
```
python3 -m pip install -U anipick
```

CMD
```
pip install anipick
```

## Import
```python
import anipick
```
## Usage

### Get Anime Info
```python
anime = anipick.Animegraphy('bofuri')

print(f'name: {anime.title}', f'description: {anime.synopsis}', sep='\n')
```

### Get Manga info
```python
manga = anipick.Mangaography('bofuri')

print(f'name: {manga.name}', f'description: {manga.synopsis}', sep='\n')
```

### Get Anime lyrics
```python
lyric = anipick.Lyricspedia('ending konosuba')
print(lyrics.lyrics_romaji)
```

### Get Anime Image and Gif
```python
pict = anipick.Animages()
print(pict.baka())
```

### Get Genshinchar
```python
char = anipick.Genshinchar
print(char('description').ayaka)
```

### Get Character info
```python
character = anipick.Charapedia('tanaka-kun')
print(f'name: {character.name}', f'about: {character.about}', f'anime refences: {character.anime}', sep='\n')
```

### Get Random Quotes From Anime
```python
quote = anipick.Quotenime()
print(quote.quote)
```

### Get Season Anime Recomend
```python
# Seasonal() is default now datetime
recommend = anipick.Seasonal(limit='3', years=2021, season='summer')
print(recommend.name)
```

# ENDPOINTS
```
anipick.Animegraphy

#title

#anime_url

#images_url

#type

#adaptation_type

#aired

#rated

#rank

#adaptation

#adaptation_name

#background

#broadcast

#duration

#op_song

#ed_song

#eps

#favorite

#genre() -> list

#mal_id

#nsfw_scan() -> bool

#premiered

#popularity

#producers

#recommend() -> list

#score

#sequel

#sequel_url

#source

#status

#studio() -> list

#synopsis

#trailer_url
```

