A Python module containing the techchrism valorant endpoints.
- Full type definitions
- Based in ValLib
The preferred method of installation is through pip
but if you know better use the package manager that you want.
pip install ValWrap
For using this module you'll require to be comfortable in how ValLib works, since it's based off of that for auth.
import ValLib
from ValLib.api import get_extra_auth
user = ValLib.User("Test", "TestPassword")
auth = ValLib.authenticate(user)
extra = get_extra_auth(auth)
match_history = get_match_history(extra)
print(match_history)
The endpoints are functions that start by the http method (get, put, post or delete) and then the name of the techchrism endpoints in lowercase and snakecase.
- Async
- More endpoints
- Better documentation
- Thanks to Techdoodle for his API docs