Python client for Old School RuneScape Hiscores API.
Project description
OSRS Hiscores
Simple OSRS Hiscores client for Python.
Installation
pip install osrs-hiscores-client
Usage
from osrs_hiscores.client import HiscoresClient
from osrs_hiscores.enums import PlayerType
rsn = "Lynx Titan"
client = HiscoresClient()
stats = client.get_player_stats(rsn, PlayerType.NORMAL)
print(f"Player {stats.rsn} has {stats.skills.agility.name} (ID: {stats.skills.agility.id}) level of {stats.skills.agility.level}, {stats.skills.agility.experience} experience and rank {stats.skills.agility.rank}.")
# Player Lynx Titan has Agility (ID: 17) level of 99, 200000000 experience and rank 24.
# You can also loop all skills if you want to!
for skill in stats.skills:
print(f"Player {stats.rsn} has {skill.name} (ID: {skill.id}) level of {skill.level}, {skill.experience} experience and rank {skill.rank}")
# Player Lynx Titan has Overall (ID: 0) level of 2278, 4600000000 experience and rank 83146
# Player Lynx Titan has Attack (ID: 1) level of 99, 200000000 experience and rank 15
# Player Lynx Titan has Defence (ID: 2) level of 99, 200000000 experience and rank 28
# Player Lynx Titan has Strength (ID: 3) level of 99, 200000000 experience and rank 18
# Player Lynx Titan has Hitpoints (ID: 4) level of 99, 200000000 experience and rank 7
# ...
# Each object can be turn into dictionary if needed.
print(stats.skills.cooking.to_dict())
# {'name': 'Cooking', 'rank': 150, 'level': 99, 'experience': 200000000}
# You can also access the activity statistics.
print(f"Player {stats.rsn} has {stats.activities.barrows_chests.name} (ID: {stats.activities.barrows_chests.id}) kill count of {stats.activities.barrows_chests.score} and rank {stats.activities.barrows_chests.rank}.")
# Player Lynx Titan has Barrows (ID: 25) kill count of -1 and rank -1.
for activity in stats.activities:
print(f"Player {stats.rsn} has {activity.name} (ID: {activity.id}) score of {activity.score} and rank {activity.rank}")
# Player Lynx Titan has Barrows (ID: 25) score of -1 and rank -1.
# Player Lynx Titan has Grid Points (ID: 0) score of -1 and rank -1
# Player Lynx Titan has League Points (ID: 1) score of -1 and rank -1
# Player Lynx Titan has Deadman Points (ID: 2) score of -1 and rank -1
# ...
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
File details
Details for the file osrs_hiscores_client-1.0.2.tar.gz.
File metadata
- Download URL: osrs_hiscores_client-1.0.2.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
175f650199ce92c7944240ea41c0f350ac3ee3e8d50cfb620439d9cbb5260bac
|
|
| MD5 |
90ec814eccb2715631cb8dcbf7f689bf
|
|
| BLAKE2b-256 |
b3a2de22466521e582c022a624cdbd8cf31daf23eab5785e83eeb7147b43e3cf
|