Metadata-Version: 2.1
Name: ufcpy
Version: 1.0.0
Summary: A fast and easy way to access the UFC roster
Home-page: https://github.com/YoungTrep/ufcpy
Author: youngtrep
Author-email: youngtrep.business@gmail.com
License: MIT
Description: # UFCPy
        
        ![Discord](https://img.shields.io/discord/797127174141378571?label=SERVER&logo=discord&style=for-the-badge)<br>
        ![GitHub forks](https://img.shields.io/github/forks/YoungTrep/ufcpy?color=green&logo=github&style=for-the-badge)<br>
        ![GitHub Repo stars](https://img.shields.io/github/stars/YoungTrep/ufcpy?color=lime%20green&label=STARS&logo=github&style=for-the-badge)
        
        UFCPy is a Python wrapper to get access to the UFC fighter roster. 
        
        ## Installation
        
        Use the package manager [pip](https://pypi.org) to install UFCPy.
        
        ```bash
        pip install ufcpy
        ```
        
        ## Usage
        
        ```
        from ufcpy import Fighter
        
        f = Fighter()
        f.get_fighter('jon jones')
        
        # returns 'Bones'
        f.nickname
        
        # returns 'Rochester, United States'
        f.hometown
        ```
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
        
Keywords: ufc,mma,mixed martial arts,fighting,fighters,ufc-api,mma-api
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
