Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danpeled/statbotics-dart
A library for interacting with Statbotics data for FRC
https://github.com/danpeled/statbotics-dart
Last synced: about 2 months ago
JSON representation
A library for interacting with Statbotics data for FRC
- Host: GitHub
- URL: https://github.com/danpeled/statbotics-dart
- Owner: DanPeled
- License: mit
- Created: 2024-10-26T18:44:17.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-27T06:06:59.000Z (2 months ago)
- Last Synced: 2024-10-27T21:26:13.018Z (2 months ago)
- Language: Dart
- Homepage: https://pub.dev/packages/statbotics
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
A library for interacting with [Statbotics](https://www.statbotics.io/) data for FRC
## Features
- Getting team data
- Getting match data
- Getting year data
- Getting team year data
## Installing
### Use this package as a library
Run this command:### With Dart:
`$ dart pub add statbotics`This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
```yml
dependencies:
statbotics: ^1.0.0
```Alternatively, your editor might support dart pub get. Check the docs for your editor to learn more.
### Import it
Now in your Dart code, you can use:
```dart
import 'package:statbotics/statbotics.dart';
```
## Usage
Basic usage is handled through the `Statbotics` static class that will handle all the http requests for you with no additional setup.## Contributing
Follow the instructions here: [contributing](CONTRIBUTING.md).