Lines Matching refs:a
14 like SSL etc. The project is focused mainly on making it easy to run a
15 websocket server for prototyping, testing or for making a GUI for your application.
27 For coding details have a look at the [*server.py*](https://github.com/Pithikos/python-websocket-se…
32 You can get a feel of how to use the websocket server by running
74 | `set_fn_new_client()` | Sets a callback function that will be called for every new `client`…
75 | `set_fn_client_left()` | Sets a callback function that will be called for every `client` dis…
76 | `set_fn_message_received()` | Sets a callback function that will be called when a `client` sends …
77 | `send_message()` | Sends a `message` to a specific `client`. The message is a simple s…
78 | `send_message_to_all()` | Sends a `message` to **all** connected clients. The message is a si…
87 | `set_fn_message_received()` | Called when a `client` sends a `message` | client, server,…
99 server.send_message_to_all("Hey all, a new client has joined us")
108 Client is just a dictionary passed along methods.