TBAPIv3

Bindings to get data from The Blue Alliance API (v3). Uses structured (instead of generated) data classes.


Keywords
api-wrapper, first-frc, first-robotics-competition, firstrobotics, frc, frc-scouting, python, python-library, python3, tba-api, the-blue-alliance
License
MIT
Install
pip install TBAPIv3==1.4.0

Documentation

TBAPI v3

Python library to get data from The Blue Alliance. Uses v3 of the TBA API.

This library returns JSON data fetched from The Blue Alliance's API. Requires an application-specific key issued by TBA.

Compatible with Python 3.

Official documentation for the The Blue Alliance API (the official API, not these bindings) can be found here

Setup

First, install the module:

pip3 install tbapiv3

Then, to use these functions, you must import the tbapiv3 module:

import tbapiv3

And then instantiate an instance of the bindings class:

tba = tbapiv3.TBA('key')

Authors

This software was created and is maintained by Benjamin Ward. Thanks to Erik Boesen and other contributors for the original TBApy library.