Metadata-Version: 2.0
Name: pyTBA
Version: 1.1.1b1
Summary: Python implementation for The Blue Alliance API
Home-page: https://github.com/Thing342/pyTBA
Author: Wes Jordan
Author-email: wes@wesj.org
License: GPLv3
Keywords: Python implementation of Blue Alliance API for FRC
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: cachecontrol
Requires-Dist: dpath
Requires-Dist: numpy
Requires-Dist: requests

# pyTBA
Python 3 Blue Alliance API Layer for parsing FIRST Robotics Competition event data.

## Adding it to your code:
To add PyTBA to your project, all you have to do is import the `pytba.api`
module, and set an app id:

```python
from pytba import api as tba

tba.set_api_key("<Your Name>", "<App Name>", "<App Version>")
```
## Basic Usage:
The most basic usage is to make a query to an arbitrary URL in the TBA API.
 This is done by:
 ```python
 tba.tba_get('relative/url/goes/here')
 ```
 PyTBA makes a request to the TBA API (https://www.thebluealliance.com/api/v2/)
  and returns the response, stored as a `dict`. (See [TBA API docs](https://www.thebluealliance.com/apidocs) for more information about keys)

 More advanced usage can be found in the documentation in the source code.

##Modules required:
* `requests`
* `cachecontrol`
* `dpath`
* `numpy` (If using `pytba.stats`)

###Note about older versions:
If you are updating from an older version (with the single blualliance.py file), be aware that the package structure has become more modularized. The core API code is now in the `pytba.api` module. The `Event` class is now under `pytba.models`. The decorators and utility methods are now under `pytba.util`, and OPR calcuation is now under `pytba.stat`. Check out [the init release](https://github.com/Thing342/pyTBA/releases/tag/init) if you need to clone the older code.



