Metadata-Version: 2.1
Name: valorant
Version: 0.0.4
Summary: A synchronous client package for interacting with Riot Games' Valorant API endpoints.
Home-page: https://github.com/IreTheKID/valorant.py
Author: IreTheKID
Author-email: author@example.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# valorant.py

A synchronous client package for interacting with Riot Games' Valorant API endpoints. This is currently under a lot of construction, more stuff coming soon!

### Installation

**pip**: `pip install valorant`

**poetry**: `python3 -m poetry add valorant`

### Usage

Quickstart Guide:
```python
import os
import valorant

API_KEY = os.getenv("API_KEY")
client = valorant.Client(KEY)

agents = client.get_characters()

for agent in agents.all:
	print(agent['name'])
```


