1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-27 13:34:28 +00:00

Aggiunta la funzione getschemaforgame

This commit is contained in:
Steffo 2016-01-21 21:37:17 +01:00
parent da2a435419
commit 0662ab0f64

View file

@ -88,3 +88,18 @@ def isplayingsharedgame(appid, steamid):
# Manda la richiesta ai server di Steam.
r = requests.get("http://api.steampowered.com/IPlayerService/IsPlayingSharedGame/v0001/", params=parametri).json()
return r # Non posso provare il comando; cambiare quando possibile?
def getschemaforgame(appid):
"""Trova il nome, gli achievement e le statistiche corrispondenti al numero di applicazione specificato.
:param appid: ID dell'applicazione
"""
parametri = {
'key': steamtoken,
'appid': appid,
}
# Manda la richiesta ai server di Steam.
r = requests.get("http://api.steampowered.com/ISteamUserStats/GetSchemaForGame/v2/", params=parametri).json()
return r