Metadata-Version: 2.1
Name: pyKirara
Version: 1.0.0
Summary: a Python wrapper for the starlight.kirara API
Home-page: https://github.com/EthanSk13s/pyKirara
Author: EthanSk13s
License: MIT
Project-URL: Documentation, https://pykirara.readthedocs.io/
Description: [![Documentation Status](https://readthedocs.org/projects/pykirara/badge/?version=latest)](https://pykirara.readthedocs.io/en/latest/?badge=latest)
        # pyKirara
        
        pyKirara is a Python library for the starlight.kirara REST API
        
        [Basic Documentation](https://pykirara.readthedocs.io/en/latest/)
        
        ## Usage
        
        ```python
        import pyKirara
        
        client = pyKirara.Kirara()
        uzuki = client.get_idol(101)
        
        print(f"HI! MY NAME IS {uzuki.conventional}")
        print("I'll do my best!")
        print(f"I'am {uzuki.age} years old!")
        
        # Returns:
        # HI! MY NAME IS Shimamura Uzuki
        # I'll do my best!
        # I'am 17 years old!
        ```
        
        ## Requirements
        - Python 3.6 (Will make backwards compatible)
        - [Requests](https://github.com/kennethreitz/requests) library
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
