嗨,大家好我想弄清楚如何过滤我从阅读json得到的结果。
我在网址https://www.cryptopia.co.nz/api/GetMarket/5662
使用requests.get
返回:
{
"Success": true,
"Message": null,
"Data": {
"TradePairId": 5662,
"Label": "ETN/BTC",
"AskPrice": 0.00000493,
"BidPrice": 0.00000492,
"Low": 0.00000488,
"High": 0.00000575,
"Volume": 12863643.12913574,
"LastPrice": 0.00000492,
"BuyVolume": 281607744.12368695,
"SellVolume": 12716829.67763919,
"Change": -10.38,
"Open": 0.00000549,
"Close": 0.00000492,
"BaseVolume": 68.58095479,
"BuyBaseVolume": 86.33526192,
"SellBaseVolume": 448023579.52566910
},
"Error": null
}
我想要做的只是提取2个字段。
让我们说“标签”和“AskPrice”
这是我的代码:
r = requests.get('https://www.cryptopia.co.nz/api/GetMarket/5662')
json_data = r.json()
我需要知道从这里做什么
感谢你们的帮助:)
答案 0 :(得分:2)
在响应中调用的json
方法返回python dict
,因此您可以通过调用json_data.get(u'Data').get(u'Label')
或json_data[u'Data'][u'Label']
来访问属性。
答案 1 :(得分:1)
这将为您提供
json_data['Data']['Label']
json_data['Data']['AskPrice']