我正在尝试使用最后的价格数据,这很容易使用轮询/自动收报机终端,即
rawticker = requests.get('https://api.gdax.com/products/BTC-EUR/ticker')
json_data = json.loads(rawticker.text)
price = json_data['price']
但GDAX API不鼓励轮询。我如何使用websocket获得相同的信息。我怎样才能使以下代码只运行一次然后提取价格信息。
from websocket import WebSocketApp
from json import dumps, loads
from pprint import pprint
URL = "wss://ws-feed.gdax.com"
def on_message(_, message):
"""Callback executed when a message comes.
Positional argument:
message -- The message itself (string)
"""
pprint(loads(message))
print
def on_open(socket):
"""Callback executed at socket opening.
Keyword argument:
socket -- The websocket itself
"""
params = {
"type": "subscribe",
"channels": [{"name": "ticker", "product_ids": ["BTC-EUR"]}]
}
socket.send(dumps(params))
def main():
"""Main function."""
ws = WebSocketApp(URL, on_open=on_open, on_message=on_message)
ws.run_forever()
if __name__ == '__main__':
main()
感谢您的帮助。
答案 0 :(得分:1)
当您想要进行实时更新时,不鼓励拉取。在这种情况下,建议使用Web套接字。但是,在您的情况下,运行代码一次并退出,可以使用拉端点。
无论如何要回答你的问题。 on_message
的第一个参数是WebSocketApp
,您只需添加此行即可在收到第一条消息后将其关闭。
def on_message(ws, message):
"""Callback executed when a message comes.
Positional argument:
message -- The message itself (string)
"""
pprint(loads(message))
ws.close()
请求库内置.json()
,您可以直接在.get()
返回
import requests
rawticker = requests.get('https://api.gdax.com/products/BTC-EUR/ticker').json()
price = rawticker['price']
print(price)