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:
parent
da2a435419
commit
0662ab0f64
1 changed files with 15 additions and 0 deletions
15
steam.py
15
steam.py
|
@ -88,3 +88,18 @@ def isplayingsharedgame(appid, steamid):
|
||||||
# Manda la richiesta ai server di Steam.
|
# Manda la richiesta ai server di Steam.
|
||||||
r = requests.get("http://api.steampowered.com/IPlayerService/IsPlayingSharedGame/v0001/", params=parametri).json()
|
r = requests.get("http://api.steampowered.com/IPlayerService/IsPlayingSharedGame/v0001/", params=parametri).json()
|
||||||
return r # Non posso provare il comando; cambiare quando possibile?
|
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
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue