https://github.com/arjo129/simple-websock
A simple implementation of websockets in python
https://github.com/arjo129/simple-websock
python websocket websocket-server
Last synced: 10 months ago
JSON representation
A simple implementation of websockets in python
- Host: GitHub
- URL: https://github.com/arjo129/simple-websock
- Owner: arjo129
- License: mit
- Created: 2016-08-29T01:07:43.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-10T08:57:11.000Z (over 9 years ago)
- Last Synced: 2025-02-24T08:48:43.362Z (over 1 year ago)
- Topics: python, websocket, websocket-server
- Language: Python
- Size: 14.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# A Simple WebSocket API
Usage:
`````
import websock
class MyApp(websock.WebSocketDelegate):
def onRecieve(self, data):
print data
`````