An open API service indexing awesome lists of open source software.

https://github.com/thajiyev/frc-head-to-head-record

A website that lets you view the head-to-head record of 2 FRC teams. Built with Flask.
https://github.com/thajiyev/frc-head-to-head-record

first first-robotics-competition frc frc-scouting scouting

Last synced: 2 months ago
JSON representation

A website that lets you view the head-to-head record of 2 FRC teams. Built with Flask.

Awesome Lists containing this project

README

        

[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/) [![Website shields.io](https://img.shields.io/website-up-down-green-red/http/shields.io.svg)](http://shields.io/) [![PyPI license](https://img.shields.io/pypi/l/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/)

# FRC Head-to-Head Record

This website will allow you to view the head-to-head record of 2 FRC teams based on the data available on The Blue Alliance.

## Set up

First, go to **keys.yaml** and add an authentication key(X-TBA-Auth-Key). It will be used to pull data from The Blue Alliance.

``` yaml
auth: your-key
```

Then to run the website, type in the following command in the terminal.

```
python main.py
```

## Dependencies

Flask
```
pip install Flask
```

Requests
```
pip install requests
```

PyYAML
```
pip install PyYAML
```

Matplotlib
```
pip install matplotlib
```

Note: Installing Matplotlib automatically installs Pillow. But if you face any issues with the installation of Pillow, install it using the command below.

```
pip install Pillow
```

## License

MIT