Broadcast a message to all connected clients to a channel.
channel = supabase.channel("room1")
def on_subscribe(status, err):
if status == RealtimeSubscribeStates.SUBSCRIBED:
channel.send_broadcast('cursor-pos', \{"x": random.random(), "y": random.random()\})
channel.subscribe(on_subscribe)