Metadata-Version: 2.1
Name: ok_anime
Version: 1.2.2
Summary: python wrapper for OKanime
Home-page: https://github.com/Etherll/OKanime
Author: Etherl
License: MIT
Description: 
        
        
        Dependencies
        ============
        
        - python 3.*
        - requests
        - bs4
        
        Installation
        ============
        
        pip install ok-anime
        
        example
        ==========
        ```pyton
        
        from ok_anime import Anime
        ok = Anime('Anime Name')
        print(ok.title)
        ```
        
        index:	
        ```python
        #json of all searchs in OKAnime for anime name
        print(ok.search)
        #get anime title
        print(ok.title)
        #get anime genre
        print(ok.genre)
        #get anime url
        print(ok.url)
        #get anime cover
        print(ok.cover)
        #get anime status
        print(ok.status)
        #get anime year
        print(ok.year)
        #get anime episodes
        print(ok.episodes)
        #get anime age_classification
        print(ok.age_classification)
        print(ok.rate)
        #get anime rate
        print(ok.description)
        #get anime
        print(ok.trailer)
        #get anime
        print(ok.studio)
        #get anime
        print(ok.director)
        #get your favorite anime
        print(ok.favorite_anime('your name in okanime'))
        ```
        	
        
        this information is fetched from OkAnime
        
        Make sure you don't spam the tests too quickly! One of the tests involves POSTing invalid credentials to OKAnime, so you're likely to be IP-banned if you do this too much in too short a span of time.
        
Keywords: ok,ok anime,anime
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
