1

我想从这个 url 获取 api 信息: https : //api.binance.com/api/v1/ticker/24hr 我需要告诉一个符号 (ETHBTC) 并获取 lastprice。

import requests

binance = requests.get("https://api.binance.com/api/v1/ticker/24hr")
e = binance.json()
print(e['ETHBTC']['lastPrice'])

错误:

Traceback (most recent call last):
  File "C:\Users\crist\Documents\Otros\Programacion\Python HP\borrar.py", line 6, in <module>
    print(e['ETHBTC']['lastPrice'])
TypeError: list indices must be integers or slices, not str
4

1 回答 1

0

由于您没有在请求中指定所需的货币对,Binance API 将返回列表中所有货币对的详细信息,如下所示:

[
    { Pair 1 info },
    { Pair 2 info },
    { etc.        }
]

因此,您需要仅请求您想要的配对的详细信息,或者在您已经获取的列表中找到您想要的配对的详细信息。

要仅请求所需的对,您可以使用 Requests 的 URL 参数作为请求的参数get

myparams = {'symbol': 'ETHBTC'}
binance = requests.get("https://api.binance.com/api/v1/ticker/24hr", params=myparams)
e = binance.json()
print(e['lastPrice'])

或者,要在您已经获取的列表中找到您想要的对,您可以遍历列表。除非您想查看许多不同的配对,否则第一个选项是要走的路。

binance = requests.get("https://api.binance.com/api/v1/ticker/24hr")
e = binance.json()
for pair in e:
    if pair['symbol'] == 'ETHBTC':
        print(pair['lastPrice'])
于 2019-10-31T22:44:48.630 回答