mirror of
https://github.com/curly60e/pyblock.git
synced 2026-08-13 12:33:15 +02:00
10 lines
226 B
Python
10 lines
226 B
Python
##SN PyBlock Bitaxe WebSocket##
|
|
|
|
import websocket
|
|
|
|
def on_message(ws, message):
|
|
print(message)
|
|
|
|
ws = websocket.WebSocketApp("ws://YOUR-BITAXE-IP/api/ws",
|
|
on_message=on_message)
|
|
ws.run_forever()
|