Metadata-Version: 2.1
Name: medal-api
Version: 0.1.2
Summary: UNKNOWN
Home-page: https://github.com/gianklug/medal-api
Author: Gian Klug
Author-email: gian.klug@ict-scouts.ch
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# 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.MedalAPI 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"))

```


