https://github.com/armstjc/cfbd-json-py
Allows users to access the CFBD API, and get the resulting data in either a dictionary (think JSON), or in a pandas DataFrame (think spreadsheet).
https://github.com/armstjc/cfbd-json-py
football football-api football-data footballdata
Last synced: 3 months ago
JSON representation
Allows users to access the CFBD API, and get the resulting data in either a dictionary (think JSON), or in a pandas DataFrame (think spreadsheet).
- Host: GitHub
- URL: https://github.com/armstjc/cfbd-json-py
- Owner: armstjc
- License: mit
- Created: 2023-08-29T22:11:19.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T22:55:20.000Z (about 1 year ago)
- Last Synced: 2024-11-01T07:46:13.146Z (11 months ago)
- Topics: football, football-api, football-data, footballdata
- Language: Python
- Homepage: https://armstjc.github.io/cfbd-json-py/
- Size: 2.95 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# cfbd-json-py
Allows users to access the CFBD API, and get the resulting data in either a dictionary (think JSON), or in a pandas DataFrame (think spreadsheet).## How to Install
This package is is available through the `pip` package manager, and can be installed through one of the following commands in your terminal/shell:
```
pip install cfbd_json_py
```OR
```
python -m pip install cfbd_json_py
```If you are using a Linux/Mac instance, you may need to specify `python3` when installing.
```
python3 -m pip install cfbd_json_py
```Alternatively, `cfbd-json-py` can be installed from this GitHub repository with the following command through pip:
```
pip install git+https://github.com/armstjc/cfbd-json-py
```OR
```
python -m pip install git+https://github.com/armstjc/cfbd-json-py
```OR
```
python3 -m pip install git+https://github.com/armstjc/cfbd-json-py
```## Project Staus
You can view the status of the project [by clicking on this link](https://github.com/users/armstjc/projects/4). It will be updated periodically as more features are implemented into this python package.## Bugs/Issues
If you find an issue/bug while using this python package, [please feel free to raise an issue](https://github.com/armstjc/cfbd-json-py/issues), we're only human, and there will inevitably be issues found!
## Docs
For the cfbd-json-py docs, they can be found at [armstjc.github.io/cfbd-json-py/](https://armstjc.github.io/cfbd-json-py/cfbd_json_py.html)