Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/euanwm/sport80_api

Python API for the Sport80 portals.
https://github.com/euanwm/sport80_api

Last synced: 3 days ago
JSON representation

Python API for the Sport80 portals.

Awesome Lists containing this project

README

        

This now supports both BWL and USAW Sport80 pages. I'll write a more detailed readme once i've tidied things up a bit more.

### Simple Test Script

```python
from sport80 import SportEighty

new_funcs = SportEighty("https://bwl.sport80.com")

index_list = new_funcs.event_index(2022)[0]
event_results = new_funcs.event_results(index_list)
print(event_results)
```