Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 301 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 301 Bytes

µWebSockets.py

WIP extension for µWebSockets

import uwebsocketspy as uWS

def handler(res, req):
	res.end("Hello Python!")

app = uWS.App({
	"some": "option"
}).listen(handler)

It performs significantly better than japronto, despite being a far more complete and mature project.