我试图从这个 api 响应中获取一些数据。试图打印杀戮数量,但我不明白如何。因为在“stats”之后有很多“元数据”键。
这是代码
import requests
import json
import sys
url = 'https://cod-api.tracker.gg/v1/standard/bo4/profile/1/Edr1X'
headers = {'secret'}
r = requests.get(url, headers=headers)
print(r.text)
#Get Kills amount
data = r.text
#load the json to a string
resp = json.loads(data)
#get the stats
print (resp['data']['stats'])
#get the amount of kills how?
print (resp['data']['stats']['metadata']['kills'])
我怎样才能获得击杀的价值?我必须遍历“元数据”吗?用for循环?
子衿沉夜
相关分类