Websockets binary msgs (#2109)

* info how to run webserver with non-EOL python3

* example how to send and receive binary messages over websockets
This commit is contained in:
Michael Kefeder
2020-04-28 20:16:54 +02:00
committed by GitHub
parent 8728f40aac
commit a521c9012c
3 changed files with 49 additions and 8 deletions

View File

@@ -19,5 +19,6 @@ Then serve the statics and navigate to `host:port`
http
# or use python
python -m SimpleHTTPServer
python2 -m SimpleHTTPServer
python3 -m http.server
```