Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```