Metadata-Version: 1.2
Name: alliancepy
Version: 1.0
Summary: A library to access The Orange Alliance API
Home-page: https://github.com/karx1/alliancepy
Author: karx
Author-email: nerdstep710@gmail.com
License: MIT
Description: alliancepy
        ==========
        
        
        A library to access The Orange Alliance API.
        This module makes it easy to access the official First Tech Challenge database and use it in your Python projects for things like data science and more.
        
        Install with:
        
        .. code:: bash
          
          pip install alliancepy
         
        Here's a simple example:
        
        .. code:: py
          
          import alliancepy
          
          client = alliancepy.Client(api_key="api_key_goes_here", application_name="application_name_goes_here")
          team = client.team(7172)
          print(team.opr(1920))
        
        Supports
        --------
        Supports Python 3.6 and up.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
