Metadata-Version: 2.1
Name: animec
Version: 0.0.1
Summary: An unofficial module to extract character data from myanimelist
Home-page: https://github.com/DriftAsimov/animec
Author: DriftAsimov
Author-email: driftasimov@gmail.com
License: MIT
Keywords: animecharacter
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: google-search (==1.0.2)
Requires-Dist: bs4 (==0.0.1)
Requires-Dist: urllib3 (==1.25.9)

# Anime Character Module

This is an unofficial module to extract an anime character data from [myanimelist](https://myanimelist.net/).

Currently, the module is very basic, but I will be adding a lot of stuff to easily extract data.

If you wish to see a feature, please raise an issue. We will surely work on it.

## Installation and Usage

To install the library:
```python
pip install animec
```

To import the library:
```python
from animec import *
```

## Example 

### Getting info about an anime character

```python
from animec import *

url = charinfo("senku ishigami")
print(url)

```

### Obtaining the character's image url

```python
from animec import *

image_url = animechar("okabe rintarou")
print(image_url)

```


```
Author: DriftAsimov
GitHub: https://github.com/DriftAsimov
Language Used: Python
```


> Note: I do not own myanimelist or any imported module or api. I have just used them to extract the data.

Change Log

=============

0.0.1 (04/03/2021)

---------------------

- The First Release

