You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
Return to Code Examples/LastHeard/Python.
pip install socketIO-client
``` import socketio
sio = socketio.Client()
@sio.event def connect():
print('connected to server')
@sio.event def disconnect():
print('disconnected from server')
@sio.on("mqtt") def on_mqtt(data):
print (data) return
sio.connect(url='https://api.brandmeister.network', socketio_path="/lh/socket.io", transports="websocket") sio.wait() ```