Metadata-Version: 2.1
Name: ValVault
Version: 2.1.1
Author: PWall
License: GPL-3.0
Project-URL: Homepage, https://github.com/ValUtils/ValVault
Keywords: valorant,vault,keepass
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE


# ValVault

This python module stores the user credentials of riot users and also provides the riot auth api in one simple package so it can be used in multiple projects.

## Usage/Examples

```python
from ValVault import (
 init as init_auth,
 make_headers,
 get_users,
 get_pass,
 get_auth,
 new_user,
 User
)

init_auth()
new_user("Test", "Password")
username = get_users()[0]
user = User(username, get_pass(username))
auth = get_auth(user)
headers = make_headers(auth)
#Use auth headers to do whatever
```
