在Pusher客户端接收事件

时间:2016-12-18 11:44:07

标签: python websocket pusher

我尝试使用Python连接到BitStamp Websocket API

但是,我无法在任何地方找到合适的教程或解释过程。

我需要的是收到实时价格代码。

我尝试使用this库,但我没有收到任何实时价格。我想我可能会遗漏一些东西,因为我是WebSockets的新手。

这是我的代码:

import pusherclient
import sys

# Add a logging handler so we can see the raw communication data
import logging
root = logging.getLogger()
root.setLevel(logging.INFO)
ch = logging.StreamHandler(sys.stdout)
root.addHandler(ch)

global pusher

# We can't subscribe until we've connected, so we use a callback handler
# to subscribe when able
def connect_handler(data):
    channel = pusher.subscribe('live_trades')
    channel.bind('trade', callback)

appkey = "de504dc5763aeef9ff52"
pusher = pusherclient.Pusher(appkey)
pusher.connection.bind('pusher:connection_established', connect_handler)
pusher.connect()

print("finished")

我在运行此代码时看到的全部是 - 已完成

如何才能收到价格的实时更新?

1 个答案:

答案 0 :(得分:2)

在代码末尾添加一个while循环:

while True:
    time.sleep(1)