All Projects → frissyn → valorant.py

frissyn / valorant.py

Licence: MIT license
Complete Python interface for the Valorant API. Works right out of the box!

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to valorant.py

Monotone-HWID-Spoofer
Custom Created Hardware ID Spoofer to Bypass Hardware or IP Bans
Stars: ✭ 145 (+72.62%)
Mutual labels:  games, valorant
Snug
Write reusable web API interactions
Stars: ✭ 108 (+28.57%)
Mutual labels:  requests, api-wrapper
mkm-sdk
Python SDK for Magickartenmarkt API
Stars: ✭ 33 (-60.71%)
Mutual labels:  requests, api-wrapper
Pyrez
(ON REWRITE) An easy to use (a)sync wrapper for Hi-Rez Studios API (Paladins, Realm Royale, and Smite), written in Python. 🐍
Stars: ✭ 23 (-72.62%)
Mutual labels:  requests, api-wrapper
Instagram Stalker Scraper
(UNMAINTAINED) Fetch data of any public Instagram profile, without using api
Stars: ✭ 39 (-53.57%)
Mutual labels:  requests
info-bot
🤖 A Versatile Telegram Bot
Stars: ✭ 37 (-55.95%)
Mutual labels:  requests
32blit-games
Code and games for the 32blit console (starfield, 3d cube, jetpac, carsprint, missile command)
Stars: ✭ 20 (-76.19%)
Mutual labels:  games
riot
Riot API and analytics goodies
Stars: ✭ 30 (-64.29%)
Mutual labels:  riot-games
red-alert
Israeli Pikud Haoref missile detection API
Stars: ✭ 21 (-75%)
Mutual labels:  requests
jsynchronous
Jsynchronous.js - Data synchronization for games and real-time web apps.
Stars: ✭ 111 (+32.14%)
Mutual labels:  games
pymae
Materials for the book "Python for Mechanical and Aerospace Engineering"
Stars: ✭ 56 (-33.33%)
Mutual labels:  requests
libdrizzle-redux
The next generation of Libdrizzle with a simplified API and support for more features of the protocol
Stars: ✭ 14 (-83.33%)
Mutual labels:  api-wrapper
Steam-Server-Manager
PowerShell Steam Server Manager
Stars: ✭ 33 (-60.71%)
Mutual labels:  games
newsapi-php
A PHP client for the News API (https://newsapi.org/docs/get-started)
Stars: ✭ 21 (-75%)
Mutual labels:  api-wrapper
PS1-Argonaut-Reverse
Harry Potter, Croc 2 (& Demo) PS1 Reverse Engineering (documentation & scripts)
Stars: ✭ 70 (-16.67%)
Mutual labels:  games
WAIUA
"Who Am I Up Against?" (WAIUA) is a Valorant app that lets you see ranks, recent games, skins of players and more, all in and before a live match.
Stars: ✭ 155 (+84.52%)
Mutual labels:  valorant
Fruit-API
A Universal Deep Reinforcement Learning Framework
Stars: ✭ 61 (-27.38%)
Mutual labels:  games
fennch
Modern fetch-based axios-like HTTP client for the browser and node.js
Stars: ✭ 12 (-85.71%)
Mutual labels:  requests
Nero-Game-Engine
Advanced SFML Game Engine, Designed to be Simple and Intuitive
Stars: ✭ 50 (-40.48%)
Mutual labels:  games
The-Witcher-3-Mod-manager
Mod manager for The Witcher 3 🗃
Stars: ✭ 71 (-15.48%)
Mutual labels:  games

valorant.py

Actions PyPI Downloads LICENSE Discord

valorant.py is an unofficial API wrapper for Riot Games' Valorant API endpoints. It's modern, easy to use, feature-rich, and intuitive!

Features

  • Simple: High-level abstraction of API interactions; easy to use and easy to customize.

  • Lightweight: Doesn't rely on any external dependencies, minimal package size.

  • Extensive: Covers all Valorant related endpoints from the Riot Games API. Also includes Account coverage.

  • Fast: HTTP requests and object instancing optimized to use minimal resources and complete tasks quickly!

  • Intuitive: Complete auto-completion, docstrings, and type-hinting for all library objects and variables.

Installation

valorant.py requires Python 3.8 or higher.

Manager Command
PIP pip install valorant
Poetry poetry add valorant

Usage

Take a look at the examples/ folder for more usage snippets!

Quickstart:

import valorant

KEY = "RGAPI-Key-Here"
client = valorant.Client(KEY)

agents = client.get_characters()

print(agents.get("Viper"))

Local Client:

import valorant

client = valorant.LocalClient()

print(client.get_session())

NOTE: The Local Client interacts with the Client API that Valorant uses while the game is running on your system. This means access to current player, friend requests, shop, etc. The Local Client is currently unstable. valorant.py is not liable for any punishment you may recieve should you use its tools to break Valorant ToS. (i.e Auto-Agent Selection)

Documentation

The public API documentation for valorant.py is hosted on ReadTheDocs.io.

Use bash bin/docs to start the documentation server locally. This uses Ruby's WEBrick gem.

Help and Questions

Have a bug or issue? Need help with the API? Open an issue or hop in the #valorant-py channel of the Frisscraft Community Discord Server.

Contributing

Head over to the Contributing Guide page.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].