Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tervay/the-nim-alliance
Nim wrapper for TheBlueAlliance
https://github.com/tervay/the-nim-alliance
frc the-blue-alliance
Last synced: 14 days ago
JSON representation
Nim wrapper for TheBlueAlliance
- Host: GitHub
- URL: https://github.com/tervay/the-nim-alliance
- Owner: tervay
- License: mit
- Created: 2019-09-25T21:43:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-28T17:01:40.000Z (over 5 years ago)
- Last Synced: 2024-11-09T12:12:37.315Z (about 2 months ago)
- Topics: frc, the-blue-alliance
- Language: Nim
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## the_nim_alliance
Nim wrapper for [TheBlueAlliance](https://www.thebluealliance.com/)'s v3 API.
Inspiration from [tbapy](https://github.com/frc1418/tbapy).
### Setup
```
nimble install the_nim_alliance
````prog.nim`:
```nim
import the_nim_alliance
tba = TBA(authKey: "")
echo tba.team("frc2791")
```You will need to compile with the `-d:ssl` flag.
```bash
nim c -d:ssl -r prog.nim
```