├── .gitignore ├── COPYING ├── README.md ├── examples └── echo.py ├── setup.py └── websocket.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | build 4 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haegrr/python-websocket/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haegrr/python-websocket/HEAD/README.md -------------------------------------------------------------------------------- /examples/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haegrr/python-websocket/HEAD/examples/echo.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haegrr/python-websocket/HEAD/setup.py -------------------------------------------------------------------------------- /websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haegrr/python-websocket/HEAD/websocket.py --------------------------------------------------------------------------------