https://github.com/wardbenjamin/tbapiv3
Python bindings for The Blue Alliance API v3
https://github.com/wardbenjamin/tbapiv3
api-wrapper first-frc first-robotics-competition firstrobotics frc frc-scouting python python-library python3 tba-api the-blue-alliance
Last synced: 15 days ago
JSON representation
Python bindings for The Blue Alliance API v3
- Host: GitHub
- URL: https://github.com/wardbenjamin/tbapiv3
- Owner: WardBenjamin
- License: mit
- Created: 2017-11-13T03:32:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-15T11:36:04.000Z (about 6 years ago)
- Last Synced: 2025-04-15T19:51:11.079Z (about 1 month ago)
- Topics: api-wrapper, first-frc, first-robotics-competition, firstrobotics, frc, frc-scouting, python, python-library, python3, tba-api, the-blue-alliance
- Language: Python
- Size: 17.6 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# 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](https://www.thebluealliance.com/apidocs)
## Setup
First, install the module:pip3 install tbapiv3
Then, to use these functions, you must import the `tbapiv3` module:
```py
import tbapiv3
```And then instantiate an instance of the bindings class:
```py
tba = tbapiv3.TBA('key')
```## Authors
This software was created and is maintained by [Benjamin Ward](https://github.com/WardBenjamin). Thanks to [Erik Boesen](https://github.com/ErikBoesen) and other contributors for the original [TBApy library](https://github.com/frc1418/tbapy).