Modern WebSocket support for Flask.
Find a file
2026-05-14 23:20:25 +01:00
.github/workflows tox configuration 2026-05-14 23:20:25 +01:00
docs Remove unused import in documentation example (#43) 2022-12-29 00:56:58 +00:00
examples Clock example (Fixes #45) 2023-02-07 23:26:20 +00:00
src/flask_sock Avoid crashes on WebSocket exit in debug mode (Fixes #70) 2023-10-02 00:20:58 +01:00
tests Option to attach WebSocket route to a blueprint 2022-12-24 20:10:55 +00:00
.gitignore Initial commit 2021-03-27 16:39:26 +00:00
.readthedocs.yaml Add readthedocs config file 2023-06-20 12:53:06 +01:00
CHANGES.md Release 0.7.0 2023-10-02 23:32:34 +01:00
LICENSE Initial commit 2021-03-27 16:39:26 +00:00
MANIFEST.in Migrate Python package metadata to pyproject.toml 2023-10-15 12:56:58 +01:00
pyproject.toml Migrate Python package metadata to pyproject.toml 2023-10-15 12:56:58 +01:00
README.md Add link to change log 2021-06-06 20:26:05 +01:00
tox.ini tox configuration 2026-05-14 23:20:25 +01:00

flask-sock

Build status codecov

WebSocket support for Flask. What makes this extension different than others is that it does not require a greenlet based server (gevent, eventlet) to work.

This WebSocket implementation is compatible with the Flask development web server. For a production deployment it can be used with Gunicorn, Eventlet or Gevent.

Resources