An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# A Simple WebSocket API
Usage:
`````
import websock

class MyApp(websock.WebSocketDelegate):
def onRecieve(self, data):
print data
`````