Source: simplewebsocketserver Maintainer: joamuran@gmail.com Section: python Priority: optional Build-Depends: dh-python, python-all (>= 2.6.6-3), debhelper (>= 9) Standards-Version: 3.9.6 Homepage: https://github.com/dpallot/simple-websocket-server/ Package: python-simplewebsocketserver Architecture: all Depends: ${misc:Depends}, ${python:Depends} Description: A Simple Websocket Server written in Python ## A Simple Websocket Server written in Python . - RFC 6455 (All latest browsers) - TLS/SSL out of the box - Passes Autobahns Websocket Testsuite - Support for Python 2 and 3 . #### Installation . You can install SimpleWebSocketServer by running the following command... . `sudo pip install git+https://github.com/dpallot/simple-websocket-server.git` . Or by downloading the repository and running `sudo python setup.py install`. Installation via pip is suggested. . #### Echo Server Example `````python from SimpleWebSocketServer import SimpleWebSocketServer, WebSocket .