flask-uwsgi-websocket icon indicating copy to clipboard operation
flask-uwsgi-websocket copied to clipboard

🔌 High-performance WebSockets for your Flask apps powered by uWSGI.

Results 34 flask-uwsgi-websocket issues
Sort by recently updated
recently updated
newest added

Imagine this: ``` python @websocket.route("/websocket") def my_websocket(ws): ws.send("foo") @app.route("/somewhere") def somewhere(): #ws.send("bar") ``` Is this way of working at all possible with websockets? Do I instead need some kind of...

It would be nice if I could do something with the incoming HTTP request, before the actual uwsgi handshake is done (in https://github.com/zeekay/flask-uwsgi-websocket/blob/master/flask_uwsgi_websocket/websocket.py#L57). This way I can include authentication HTTP...

You seem to prefer the use of gevent which I can understand due to its event-based nature. I wonder what kind of disadvantages I get by not using it? Can...