mirror of
https://github.com/tervay/the-nim-alliance
synced 2026-01-13 09:11:43 +00:00
No description
| src | ||
| tests | ||
| .gitignore | ||
| LICENSE.txt | ||
| README.md | ||
| the_nim_alliance.nimble | ||
the_nim_alliance
Nim wrapper for TheBlueAlliance's v3 API.
Inspiration from tbapy.
Setup
nimble install the_nim_alliance
prog.nim:
import the_nim_alliance
tba = TBA(authKey: "<my auth key>")
echo tba.team("frc2791")
You will need to compile with the -d:ssl flag.
nim c -d:ssl -r prog.nim