Overview
Once connect(...) succeeds, use connection.send(...) to send live websocket messages.
Setup
Call send(text, ...) on the connection object returned by connect(...).
Code example
connection.send(
"Hello from PulseGrid Python",
meta={"source": "python_ws_message"},
)
Notes
Use this for live websocket messages from clients or services.