├── .gitignore ├── LICENSE ├── README.md ├── client.js ├── index.html ├── methods.py ├── server.py └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickfuller/pi-websocket/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickfuller/pi-websocket/HEAD/README.md -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickfuller/pi-websocket/HEAD/client.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickfuller/pi-websocket/HEAD/index.html -------------------------------------------------------------------------------- /methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickfuller/pi-websocket/HEAD/methods.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickfuller/pi-websocket/HEAD/server.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickfuller/pi-websocket/HEAD/style.css --------------------------------------------------------------------------------