Runemetrics

Usage

from rs3_api import Runemetrics
runemetrics = Runemetrics()

get_monthly_experience(username: str, skill_id)

Gets a players monthly experience stats for the last 12 months in a particular skill

Parameters

Type

username

str

skill_id

str

response = runemetrics.get_monthly_experience("Phyrexz", "defence")
print(response)

get_quests(username: str)

Gets statistics and information on a players quests

Parameter

Type

username

str

response = runemetrics.get_quests('Phyrexz')
print(response)

get_profile(username: str, activities: int)

Gets a player Runemetrics profile

Parameters

Type

Default

username

str

activities

int

25

response = runemetrics.get_profile('Phyrexz', 2)
print(response)

Last updated

Was this helpful?