No description
Find a file
Justin Tervay b8d94dc1cc update readme
2019-09-28 13:01:36 -04:00
src make all methods public 2019-09-28 12:43:52 -04:00
tests nimble stuff 2019-09-26 17:11:46 -04:00
.gitignore initial commit 2019-09-26 17:00:16 -04:00
LICENSE.txt add license and readme 2019-09-28 11:55:29 -04:00
README.md update readme 2019-09-28 13:01:36 -04:00
the_nim_alliance.nimble make all methods public 2019-09-28 12:43:52 -04:00

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