Skip to main content

No project description provided

Project description

ValLib

PyPI - Version GitHub deployments GitHub

A Python authentication module for the RiotGames API, and basic endpoint provider for Valorant.

Features

  • Full auth flow
  • Request helpers
  • Basic endpoints for Valorant
  • Captcha "bypass" without using external services
  • Ability to use external Captcha solvers

Installation

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

pip install ValLib

Reference

Basic structure

ValLib contains this basic building blocks:

  • User a dataclass containing username and password
  • Auth a dataclass containing ever auth param
  • AuthException a exception class for only when the auth goes wrong because of Riot

And the following methdos:

  • authenticate to auth with username+password
  • cookie_token to auth with cookies instead of username+password
  • make_headers to convert Auth into headers for making requests

Ussage

Without API helper

import ValLib
import requests

user = ValLib.User("Test", "TestPassword")
auth = ValLib.authenticate(user)
headers = ValLib.make_headers(auth)
data = requests.get("https://auth.riotgames.com/userinfo", headers=headers)
print(data.json())

With API helper

import ValLib
from ValLib.api import get_api, put_api, post_api

user = ValLib.User("Test", "TestPassword")
auth = ValLib.authenticate(user)
data = get_api("https://auth.riotgames.com/userinfo", auth)
print(data.json())

Regions and Shards

Getting the region and the shard is often one of the most complicated of managing the API. So for that we have the get_region and get_shard methods inside ValLib.api and the ExtraAuth dataclass inside ValLib.structs.

import ValLib
from ValLib.api import get_region, get_shard
from ValLib.structs import ExtraAuth

user = ValLib.User("Test", "TestPassword")
auth = ValLib.authenticate(user)
region = get_region(auth)
shard = get_shard(region)
extra = ExtraAuth(user.username, region, auth)

With this new instance of ExtraAuth we can use the custom API methods that require it of ValLib.api.

Custom methods

Inside ValLib.api there are this customs methods:

  • get_preference to fetch the in-game settings for Valorant
  • set_preference to set the in-game settings for Valorant
  • get_load_out to get the loadout (cosmetics + incognito) for Valorant
  • set_load_out to set the loadout (cosmetics + incognito) for Valorant
  • get_session to grab information about the current Valorant session

Custom Captcha provider

If you need to make automatic auth or just need another way of dealing with captcha you can make your own CaptchaSolver class. Here is an example how to do so:

import ValLib
import requests
from ValLib.captcha import CaptchaSolver, set_solver

class DumbCaptcha(CaptchaSolver):
    def token(self, rqdata, site_key):
        r = requests.get(
            "https://myapi.com",
            json={"rqdata": rqdata, "siteKey": site_key}
        )
        return r.text()

set_solver(DumbCaptcha())
user = ValLib.User("MyUser", "MyPass")
auth = ValLib.authenticate(user) # Will use api for captcha solving

DISCLAMER: most captcha solving APIs exploit people to solve captchas so I'd recommend agaisnt using them but it's at your own risk.

Roadmap

  • Async
  • More endpoints
  • Better documentation
  • Better exports

Running Tests

Tests need to be run in a development enviroment with GUI, a navigator, pytest and filling this enviroment variables.

USERNAME="TestUser"
PASSWORD="TestPassword"

And then running pytest.

Acknowledgements

  • Thanks to Valorant-API and their mantainers
  • Thanks to Hawolt for discovering the Captcha solver
  • Thanks to Techdoodle for his API docs
  • Thanks to the Valorant App Developers discord

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ValLib-1.3.0.tar.gz (25.3 kB view hashes)

Uploaded Source

Built Distribution

ValLib-1.3.0-py3-none-any.whl (28.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page