a highly scalable real-time framework based on websocket and Tornado. It's compatible with any JSON API server.
WebSocket
"A persistent TCP connection between the client and the server and both parties can start sending data at any time. "
Tornado
Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. By using non-blocking network I/O, Tornado can scale to tens of thousands of open connections.
written in python
code base is concise
how it works
orca architecture
internal
how to integrate
class SampleBroker(Broker): def __init__(self): pass def authorize(self, client_connection): return True