Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/gianklug/medal-api

Unofficial API for medal.tv
https://github.com/gianklug/medal-api

api medal medaltv python python3 unofficial

Last synced: 7 days ago
JSON representation

Unofficial API for medal.tv

Awesome Lists containing this project

README

        

# medal-api

Unofficial API Client for [medal.tv](https://medal.tv)

# Usage
```py
# Don't know if this can be done any better
from medal_api import MedalAPI

# Create the API object
api = MedalAPI()

# Query user info
print(api.get_user("Test"))

# Get a category
print(api.get_category(0))

# Get recent games
print(api.get_recent_games("Test"))

```