Metadata-Version: 2.1
Name: statbotics
Version: 0.1.10
Summary: Modernizing FRC Data Analytics
Home-page: https://statbotics.io
License: MIT
Keywords: FIRST,robotics,data,analysis,ranking
Author: Abhijit Gupta
Author-email: avgupta456@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: cachecontrol (>=0.12.6,<0.13.0)
Requires-Dist: requests (>=2.24.0,<3.0.0)
Project-URL: Repository, https://github.com/statbotics/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 historical Elo and OPR 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.6 and pip installed, run

```
pip install statbotics
```

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

```
import statbotics

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

>> {'team':254, 'name': 'The Cheesy Poofs', 'state': 'CA', 'country': 'USA', 'district': 'None',
    'active': True, 'elo': 1860, 'elo_recent': 1972, 'elo_mean': 1898, 'elo_max': 2145}
```

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.

