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

I've placed my app in a package like that: ``` - package/ |- __init__.py -- echo.py ``` The code of `echo.py` is ``` from flask import Flask from flask_uwsgi_websocket import...

Closing the websocket with ``` ws.close() ``` appears to delay the close and the client receives an abnormal close code (1006) ``` websockets.exceptions.ConnectionClosed: WebSocket connection is closed: code = 1006...

Under your `Advanced Usage` in the README docs it mentions how to expose the request context in a websocket handler using: with app.request_context(ws.environ): Is there a recommended way to do...

Hi, I am wondering if the asyncio implementation sends the PINGs in the background because I receive no PONG received in 3 seconds every single time after 30 seconds. My...

I setup a Flask instance using AsyncioWebSocket websockets and implemented the `echo` example. It works completely fine, I can send and receive websocket messages just fine without any error messages...

Hi, I want to use websocket via https (because h5 getUserMedia need the secure connect). Try the code use https in Flask as below. `app.run(gevent=100, host='192.168.2.217', debug=True, port=5000, ssl_context='adhoc')` It...

Binary data was not actually pointing to the correct uwsgi internal call when using the gevent loop engine.

i have the following configuration on mac: ``` Flask (0.10.1) Flask-uWSGI-WebSocket (0.4.4) gevent (1.0.2) greenlet (0.4.9) uWSGI (2.0.11.2) ``` my app code is: ``` python from flask import Flask from...

It would be great if you could add a changelog to the project. Making it easier to understand what changed between different version :)

Hello, I am trying to use the GeventWebsocket in an apache + uwsgi + flask product, so I already have an uwsgi instance in my app, and I know it'll...