You do not have permission to edit this page, for the following reason:

The action you have requested is limited to users in the group: Users.


You can view and copy the source of this page.

Return to Code Examples/LastHeard/Python.

Requirements[edit]

pip install socketIO-client

Example[edit]

``` 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() ```