Metadata-Version: 2.1
Name: animec
Version: 0.0.2
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
Description: # 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 *
        
        our_object = Animec()
        url = our_object.charinfo("senku ishigami")
        print(url)
        
        ```
        
        ### Obtaining the character's image url
        
        ```python
        from animec import *
        
        our_object = Animec()
        image_url = our_object.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.
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
