pyblock/pybitblock/WebSocket-Bitaxe-Logs.py

11 lines
226 B
Python
Raw Normal View History

2025-07-09 22:37:12 +02:00
##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()