An Asynchronous Unofficial Valorant API Wrapper for Python
Project description
valorant
A modern, easy to use, feature-rich, and async ready API wrapper for Valorant API written in Python.
Key Features
- Modern Pythonic API using
async
andawait
.
Installing
Python 3.8 or higher is required
Windows:
$ pip install -U valorant.py
Linux/MacOS:
$ python3 -m pip install -U valorant.py
Quick Example
import asyncio
import valorant
async def main():
client = valorant.Client(valorant.Locale.thai) # set default locale to thai
async with client:
weapon = client.get_weapon('9c82e19d-4575-0200-1a81-3eacf00cf872') # Vandal
assert weapon is not None
for skin in weapon.skins:
print(skin.display_name) # default locale
print(skin.display_icon)
# specify locale
print(skin.display_name.ja_JP)
print(skin.display_name.japanese)
print(skin.display_name.from_locale(valorant.Locale.japanese))
if skin.theme is not None:
print(skin.theme.display_name)
print(skin.theme.display_icon)
if skin.content_tier is not None:
print(skin.content_tier.display_name)
print(skin.content_tier.display_icon)
for level in skin.levels:
print(level.display_name)
for chroma in skin.chromas:
print(chroma.display_name)
asyncio.run(main())
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project inspired by
- discord.py the Discord API wrapper for Python.
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
valorant.py-1.0.6.tar.gz
(44.0 kB
view details)
Built Distribution
File details
Details for the file valorant.py-1.0.6.tar.gz
.
File metadata
- Download URL: valorant.py-1.0.6.tar.gz
- Upload date:
- Size: 44.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c77b2425341d58194756b0c9bbba67da195cc52531ccaabd7d367d00057fe5cd |
|
MD5 | c806f643a02be75675fc0765ba00da60 |
|
BLAKE2b-256 | 94a93436951d9f87a84ece05cb4a60c18884e46194a1a09b46297d8700b945e4 |
File details
Details for the file valorant.py-1.0.6-py3-none-any.whl
.
File metadata
- Download URL: valorant.py-1.0.6-py3-none-any.whl
- Upload date:
- Size: 94.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 147c37105ca327b2db12a780072baa355b9d56c02767eb2c6599e53189099572 |
|
MD5 | 864764fe3fef35dbe38b714c1ce8377c |
|
BLAKE2b-256 | 9294e3eb513d4ab17d3eb369c630ec7721d105b83d017f35bd4a123937602b9b |