有人知道如何从 Binance 的 API 打印 JSON 结果吗?我一直在使用它来get_all_tickers
返回所有符号和价格。我希望能够选择某个交易品种和价格,并在终端中连续显示或直到用户退出。我正在使用这个库。
我的代码:
url = 'https://api.binance.com/api/v3/ticker/price'
response = reqs.get(url) # To execute get request
print(response.status_code) # To print http response code
print(response.content)
print(response.json) # To print formatted JSON response
输出:
200
{
"userId": 1,
"id": 1,
"title": "market data",
"completed": False
}