Skip to content

ValUtils/ValWrap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ValWrap

PyPI - Version GitHub deployments GitHub

A Python module containing the techchrism valorant endpoints.

Features

  • Full type definitions
  • Based in ValLib

Installation

The preferred method of installation is through pip but if you know better use the package manager that you want.

pip install ValWrap

Reference

Usage

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)

Endpoints

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.

Roadmap

  • Async
  • More endpoints
  • Better documentation

Acknowledgements