You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A minimal Websockets Server in Python with no external dependencies.
5
7
6
-
*Works with Python2 and Python3
8
+
* Python2 and Python3 support
7
9
* Clean simple API
8
10
* Multiple clients
9
11
* No dependencies
@@ -13,15 +15,6 @@ like SSL etc. The project is focused mainly on making it easy to run a
13
15
websocket server for prototyping, testing or for making a GUI for your application.
14
16
15
17
16
-
Usage
17
-
=======================
18
-
You can get a feel of how to use the websocket server by running
19
-
20
-
python server.py
21
-
22
-
Then just open `client.html` in your browser and you should be able to send and receive messages.
23
-
24
-
25
18
Installation
26
19
=======================
27
20
@@ -34,6 +27,15 @@ You can use the project in three ways.
34
27
For coding details have a look at the [*server.py*](https://github.com/Pithikos/python-websocket-server/blob/master/server.py) example and the [API](https://github.com/Pithikos/python-websocket-server#api).
35
28
36
29
30
+
Usage
31
+
=======================
32
+
You can get a feel of how to use the websocket server by running
33
+
34
+
python server.py
35
+
36
+
Then just open `client.html` in your browser and you should be able to send and receive messages.
0 commit comments