Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/gianklug/medal-api
- Owner: gianklug
- License: gpl-3.0
- Created: 2023-02-02T22:01:58.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-06T18:46:04.000Z (almost 2 years ago)
- Last Synced: 2024-08-09T05:16:08.703Z (3 months ago)
- Topics: api, medal, medaltv, python, python3, unofficial
- Language: Python
- Homepage:
- Size: 90.8 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"))```