From 0662ab0f6484993a039a85f338297125fac2a953 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 21 Jan 2016 21:37:17 +0100 Subject: [PATCH] Aggiunta la funzione getschemaforgame --- steam.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/steam.py b/steam.py index d8f3b282..534e3533 100644 --- a/steam.py +++ b/steam.py @@ -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 + +