mirror of
https://github.com/curly60e/pyblock.git
synced 2026-08-13 12:33:15 +02:00
10 lines
229 B
Python
10 lines
229 B
Python
##SN PyBlock Txs WebSocket##
|
|
|
|
import websocket
|
|
|
|
def on_message(ws, message):
|
|
print(message)
|
|
|
|
ws = websocket.WebSocketApp("wss://bits.monospace.live/ws/txs",
|
|
on_message=on_message)
|
|
ws.run_forever()
|