Metadata-Version: 2.3
Name: statbotics
Version: 3.0.0
Summary: Modernizing FRC Data Analytics
License: MIT
Keywords: FIRST,robotics,data,analysis,ranking
Author: Abhijit Gupta
Author-email: avgupta456@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: cachecontrol (>=0.12.11,<0.13.0)
Requires-Dist: requests (>=2.28.2,<3.0.0)
Project-URL: Homepage, https://statbotics.io
Project-URL: Repository, https://github.com/avgupta456/statbotics
Description-Content-Type: text/markdown

# Statbotics API

Statbotics.io aims to modernize FRC data analytics through developing and distributing cutting-edge metrics and analysis. This Python API makes Expected Points Added (EPA) statistics just a few Python lines away! Currently we support queries on teams, years, events, and matches. Read below for usage and documentation.

Visit https://statbotics.io for more content!

## Usage

With Python>=3.8 and pip installed, run

```
pip install statbotics==3.0.0
```

Then in a Python file, create a Statbotics object and get started!

```
import statbotics

sb = statbotics.Statbotics()
print(sb.get_team(254))

>> {'team': 254, 'name': 'The Cheesy Poofs', 'country': 'USA', 'state': 'CA', 'district': None, 'rookie_year': 1999, 'active': True, 'record': {'wins': 808, 'losses': 160, 'ties': 8, 'count': 976, 'winrate': 0.832}, 'norm_epa': {'current': 1909.0, 'recent': 1904.0, 'mean': 1894.0, 'max': 2058.0}}
```

Read below for more methods!

## API Reference

Visit https://statbotics.readthedocs.io/en/latest/

## Contribute

If you are interested in contributing, reach out to Abhijit Gupta (avgupta456@gmail.com)

## Support

If you are having issues, please let us know. We welcome issues and pull requests.

## License

The project is licensed under the MIT license.

