Metadata-Version: 1.1
Name: pyufc
Version: 0.2.1
Summary: A Python wrapper for API access to the UFC fighter roster
Home-page: https://github.com/ehamiter/pyufc
Author: Eric Hamiter
Author-email: ehamiter@gmail.com
License: MIT
Description: pyufc
        #####
        
        A Python wrapper for API access to the UFC fighter roster
        
        *Inspired by https://github.com/valish/ufc-api*
        
        .. image:: https://img.shields.io/pypi/v/pyufc.svg
            :target: https://pypi.python.org/pypi/pyufc
            :alt: Latest PyPI version
        
            In [1]: from pyufc import Fighter
            
            In [2]: f = Fighter()
            
            In [3]: f.get_fighter("randy couture")
            
            In [4]: f.summary
        
            Out[4]: u'World class wrestler, great clinch'
            
            In [5]: f.record
        
            Out[5]: u'19-11-0'
            
            In [6]: f.twitter_url
        
            Out[6]: u'http://twitter.com/Randy_Couture'
        
Keywords: ufc,mma,mixed martial arts,fighting,fighters
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 :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
