Metadata-Version: 2.4
Name: scoutkick-api
Version: 0.1.0
Summary: Python client for the ScoutKick EPA rating system (FIRST Tech Challenge)
Author: Cicchy
License: MIT
Project-URL: Homepage, https://scoutkick.onrender.com
Project-URL: Source, https://github.com/Cicchy/scoutkick
Keywords: ftc,first,tech,challenge,epa,scoutkick,statbotics
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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: Topic :: Scientific/Engineering
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# ScoutKick API Client

Zero-dependency Python client for the [ScoutKick](https://scoutkick.onrender.com) EPA rating system for FIRST Tech Challenge.

```python
from scoutkick_api import ScoutKick

sk = ScoutKick()  # defaults to https://scoutkick.onrender.com

sk.get_team(26914)
sk.predict(red=[26914, 32736], blue=[23400, 24599])
sk.get_teams(season="2025", limit=10)
sk.compare(teams=[26914, 32736])
```
