Rainbow Six Siege API interface
Project description
How to install
pip install siegeapi
Quick example
from siegeapi import Auth
import asyncio
async def sample():
auth = Auth("UBI_EMAIL", "UBI_PASSWORD")
player = await auth.get_player(uid="7e0f63df-a39b-44c5-8de0-d39a05926e77")
print(f"Name: {player.name}")
print(f"Profile pic URL: {player.profile_pic_url}")
await player.load_playtime()
print(f"Total Time Played: {player.total_time_played}")
await player.load_progress()
print(f"Level: {player.level}")
print(f"Alpha pack %: {player.alpha_pack}")
print(f"XP: {player.xp}")
print(f"Total XP: {player.total_xp}")
print(f"XP to level up: {player.xp_to_level_up}")
await auth.close()
asyncio.get_event_loop().run_until_complete(sample())
# Or `asyncio.run(sample())`
Output
Name: CNDRD
Profile pic URL: https://ubisoft-avatars.akamaized.net/7e0f63df-a39b-44c5-8de0-d39a05926e77/default_256_256.png
Total Time Played: 6723492
Level: 261
Alpha pack %: 30.5
XP: 12318
Total XP: 14875818
XP to level up: 109182
Docs
For docs visit WIKI
Type hints
Everything is type hinted to the best of my abilities
If there's something missing or wrong, let me know or submit a PR
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
siegeapi-2.0.1.tar.gz
(26.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
siegeapi-2.0.1-py3-none-any.whl
(34.5 kB
view details)
File details
Details for the file siegeapi-2.0.1.tar.gz.
File metadata
- Download URL: siegeapi-2.0.1.tar.gz
- Upload date:
- Size: 26.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4979b9589bd818be6293fbd65f08ed9bc561ca13fe0f5fa892229e73646f3c5d
|
|
| MD5 |
c7c89c8d1d6cab142eedb56f1daaf87b
|
|
| BLAKE2b-256 |
6d892663809499989b6233ff5a3d6a80e43ed442bb52a8d4b1a3226d3d281c7d
|
File details
Details for the file siegeapi-2.0.1-py3-none-any.whl.
File metadata
- Download URL: siegeapi-2.0.1-py3-none-any.whl
- Upload date:
- Size: 34.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b10caefee3a6ae1b8b97559f7868347c0b1f0348dea66cad9b35206123e59668
|
|
| MD5 |
9ab67198fa12c86e1cb31e2ffac5c95a
|
|
| BLAKE2b-256 |
fb3861e67a94724f8f90eda58ef2e4a1ba752d512219e044394be08df5abf125
|