我在使用Django环境,我想从蒸汽中提取数据。然而,蒸汽的API非常愚蠢,因为它们有大约20个不同的URL,我想要的两个主要信息是:
我正在使用Python库来GET来自蒸汽的数据。
import requests
import json
from xml.dom.minidom import parseString
STEAM_API_URL = 'http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002'
STEAM_API_KEY = 'XXXXX'
STEAM_USERNAME = 'niteshade'
# Make request to steamcommunity.com with the username to get the 64-bit Steam ID
username_r = requests.get('http://steamcommunity.com/id/{0}/games?tab=all&xml=1'.format(STEAM_USERNAME))
steamid = str(parseString(username_r.text.encode('utf-8')).getElementsByTagName('steamID64')[0].firstChild.wholeText)
totalgames = parseString(username_r.text.encode('utf-8')).getElementsByTagName('game').length
data = {
'key': STEAM_API_KEY,
'steamids': steamid,
}
user_r = requests.get(STEAM_API_URL, params=data)
#user_r.json['response']['players'][0].update({'totalgames'.encode('utf-8'): totalgames})当我查询steamcommunity.com时,会得到如下内容:
<gamesList>
<steamID64>12345</steamID64>
<steamID>aSteamID</steamID>
<games>
<game>
<appID>201790</appID>
<name>Orcs Must Die! 2</name>
<logo>http://media.steampowered.com/steamcommunity/public/images/apps/201790/c345d9b205f349f0e7f4e6cdf8af4d0b7d242505.jpg</logo>
<storeLink>http://steamcommunity.com/app/201790</storeLink>
<hoursLast2Weeks>2.2</hoursLast2Weeks><hoursOnRecord>14.3</hoursOnRecord>
<statsLink>http://steamcommunity.com/id/niteshade/stats/201790</statsLink>
<globalStatsLink>http://steamcommunity.com/stats/201790/achievements/</globalStatsLink>
</game>
<game>
<appID>113200</appID>
<name>The Binding of Isaac</name>
<logo>http://media.steampowered.com/steamcommunity/public/images/apps/113200/d9a7ee7e07dffed1700cb8b3b9482105b88cc5b5.jpg</logo>
<storeLink>http://steamcommunity.com/app/113200</storeLink>
<hoursLast2Weeks>0.2</hoursLast2Weeks>
<hoursOnRecord>22.8</hoursOnRecord>
<statsLink>http://steamcommunity.com/id/niteshade/stats/BindingOfIsaac</statsLink>
<globalStatsLink>http://steamcommunity.com/stats/BindingOfIsaac/achievements/</globalStatsLink>
</game>
<game>
<appID>19680</appID>
<name>Alice: Madness Returns</name>
<logo>http://media.steampowered.com/steamcommunity/public/images/apps/19680/16eb0cc15cde07377c0cb3bffa6d92bbc6dd72b2.jpg</logo>
<storeLink>http://steamcommunity.com/app/19680</storeLink>
</game>
</games>我从api.steampowered.com得到了这样的信息:
{
"response": {
"players": [
{
"steamid": "12345",
"communityvisibilitystate": 3,
"profilestate": 1,
"personaname": "aSteamID",
"lastlogoff": 1351676021,
"profileurl": "http:\/\/steamcommunity.com\/id\/aSteamID\/",
"avatar": "http:\/\/media.steampowered.com\/steamcommunity\/public\/images\/avatars\/b2\/b261f66a17bfa6c95b24f8b4c6b58bb3776d57e4.jpg",
"avatarmedium": "http:\/\/media.steampowered.com\/steamcommunity\/public\/images\/avatars\/b2\/b261f66a17bfa6c95b24f8b4c6b58bb3776d57e4_medium.jpg",
"avatarfull": "http:\/\/media.steampowered.com\/steamcommunity\/public\/images\/avatars\/b2\/b261f66a17bfa6c95b24f8b4c6b58bb3776d57e4_full.jpg",
"personastate": 4,
"realname": "Real Name",
"primaryclanid": "103582791429705688",
"timecreated": 1250966723,
"loccountrycode": "GB"
}
]
}
}基本上,为了能够从api.steampowered.com获得任何东西,我需要一个蒸汽ID。为了得到这个ID,我调用steamcommunity.com网站,它返回一个带有蒸汽ID的XML文件,以及其他的东西。我需要的信息如下(使用XML/JSON响应中的名称):
播放器
游戏
对于游戏总数,我想我只需计算steamcommunity.com返回的XML文件中的XML节点数即可。它起了作用,因为我能够计算它们,但我似乎无法从api.steampowered.com的JSON响应中添加一个JSON字段。其次,并不是所有的<game>节点都有<hoursLast2Weeks>子节点,我只想要那些这样做的节点。第三,我只想得到球员的朋友总数。我不是在自欺欺人,我知道我将不得不使用另一个GET,但问题是将它添加到JSON中。
我的主要问题是尝试添加到JSON响应中,我已经看过其他示例,因此尝试遵循它们,但我不知道我在这里出错了。任何帮助都将不胜感激。
发布于 2012-11-01 16:39:50
要满足向totalgames响应中的每个元素添加players:
import json
response = '{"response": {"players": [{"steamid": "12345","communityvisibilitystate": 3,"profilestate": 1,"personaname": "aSteamID","lastlogoff": 1351676021,"profileurl": "http:\/\/steamcommunity.com\/id\/aSteamID\/","avatar": "http:\/\/media.steampowered.com\/steamcommunity\/public\/images\/avatars\/b2\/b261f66a17bfa6c95b24f8b4c6b58bb3776d57e4.jpg","avatarmedium": "http:\/\/media.steampowered.com\/steamcommunity\/public\/images\/avatars\/b2\/b261f66a17bfa6c95b24f8b4c6b58bb3776d57e4_medium.jpg","avatarfull": "http:\/\/media.steampowered.com\/steamcommunity\/public\/images\/avatars\/b2\/b261f66a17bfa6c95b24f8b4c6b58bb3776d57e4_full.jpg","personastate": 4,"realname": "Real Name","primaryclanid": "103582791429705688","timecreated": 1250966723,"loccountrycode": "GB"}]}}'
data = json.loads(response)
for player in data["response"]["players"]:
# add code to get game count by player here
# set to zero for this example
totalgames = 0
player["totalgames"] = totalgames
print json.dumps(data, sort_keys=True, indent=4)发布于 2012-11-01 15:39:26
更改json数据非常简单:
jsondata = json.loads(json_input_string)
jsondata['newkey'] = new_value
json_output_string = json.dumps(jsondata)https://stackoverflow.com/questions/13179917
复制相似问题