Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.07 KB

README.rst

File metadata and controls

38 lines (26 loc) · 1.07 KB

alliancepy

image

PyPI package

Documentation Status

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.

View the full documentation here

Install with:

pip install alliancepy

Here's a simple example:

import alliancepy
from alliancepy import Season

client = alliancepy.Client(api_key="api_key_goes_here", application_name="application_name_goes_here")
team = client.team(16405)
print(team.opr(Season.SKYSTONE))

Supports

Supports Python 3.6 and up.