Score Saber API wrapper
Project description
PyScoreSaber
Score Saber API wrapper
Features
- Rate Limit handling
- Query Caching
- Everything is
async - Additional helper methods and async generators
- Faker data provider
The faker data mode can be activated with the following scoresaber = ScoreSaber(test_mode=True).
This will return random data instead of making API requests to Score Saber.
Usage:
import asyncio
from pyscoresaber import ScoreSaberAPI
async def main():
async with ScoreSaberAPI() as scoresaber:
player = await scoresaber.player_full("76561198029447509")
print(player)
# Get fake data instead
async def main_fake():
async with ScoreSaberAPI(test_mode=True) as scoresaber:
player = await scoresaber.player_basic("76561198029447509")
print(player)
asyncio.run(main())
asyncio.run(main_fake())
Faker provider:
from faker import Faker
from pyscoresaber import ScoreSaberProvider
faker = Faker()
faker.add_provider(ScoreSaberProvider)
player = faker.player_basic("76561198029447509")
print(player)
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
PyScoreSaber-1.0.8.tar.gz
(10.5 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
File details
Details for the file PyScoreSaber-1.0.8.tar.gz.
File metadata
- Download URL: PyScoreSaber-1.0.8.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a25d4b600fed71c536146348fa779f344a1117eecd13d77924e541dbcda5cf4
|
|
| MD5 |
88761a3630709346b43dd05bff4743e5
|
|
| BLAKE2b-256 |
7ea89fdfa96d3c9434f40bc07f611a74428b911c14e2136bd8e4b1f1eb1ca28a
|
File details
Details for the file PyScoreSaber-1.0.8-py3-none-any.whl.
File metadata
- Download URL: PyScoreSaber-1.0.8-py3-none-any.whl
- Upload date:
- Size: 17.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd0be9f52e097c62a5ffaaea4022b3fd2df9489b7c11ca5902c58d0ab1c9c9ef
|
|
| MD5 |
b99736db2d420a8f2b995f23172e3881
|
|
| BLAKE2b-256 |
70bc500dd45232f7ad3e919b016790014808c4711dfc6eb72168845fc3568158
|