0
我想寫一個Python 3代碼,它使用Dogechain Websocket API和python websocket client打印出每個新的Dogicoin塊。Python 3 websocket客戶端,永遠運行
import json
import ssl
from websocket import create_connection
ws = create_connection("wss://ws.dogechain.info/inv", sslopt={"cert_reqs": ssl.CERT_NONE})
ws.send(json.dumps({"op":"blocks_sub"}))
while 1:
result = ws.recv()
print(result)
成功訂閱後,塊更新不會來。我得到的只是以下輸出,沒有別的。我的目標是每當塊到達時運行一個函數。我做錯了什麼?
{"op": "status", "msg": "subscribed, welcome, ..."}
{"op": "status", "msg": "subscribed"}
我有使用nodejs客戶端相同的問題,你有沒有設法弄清楚什麼是錯的? – lkan