├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGES.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── _static │ └── css │ │ └── custom.css ├── api.rst ├── conf.py ├── index.rst ├── make.bat ├── quickstart.rst └── web_servers.rst ├── examples ├── blueprints │ ├── .flaskenv │ ├── README.md │ ├── blueprints │ │ ├── __init__.py │ │ ├── app.py │ │ ├── main.py │ │ ├── templates │ │ │ └── index.html │ │ └── ws.py │ ├── requirements.txt │ └── run.py ├── clock.py ├── echo-eventlet.py ├── echo-gevent.py ├── echo.py └── templates │ ├── clock.html │ └── index.html ├── pyproject.toml ├── src └── flask_sock │ └── __init__.py ├── tests ├── __init__.py └── test_flask_sock.py └── tox.ini /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/docs/_static/css/custom.css -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/web_servers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/docs/web_servers.rst -------------------------------------------------------------------------------- /examples/blueprints/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_APP=run.py 2 | -------------------------------------------------------------------------------- /examples/blueprints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/examples/blueprints/README.md -------------------------------------------------------------------------------- /examples/blueprints/blueprints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/blueprints/blueprints/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/examples/blueprints/blueprints/app.py -------------------------------------------------------------------------------- /examples/blueprints/blueprints/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/examples/blueprints/blueprints/main.py -------------------------------------------------------------------------------- /examples/blueprints/blueprints/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/examples/blueprints/blueprints/templates/index.html -------------------------------------------------------------------------------- /examples/blueprints/blueprints/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/examples/blueprints/blueprints/ws.py -------------------------------------------------------------------------------- /examples/blueprints/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/examples/blueprints/requirements.txt -------------------------------------------------------------------------------- /examples/blueprints/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/examples/blueprints/run.py -------------------------------------------------------------------------------- /examples/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/examples/clock.py -------------------------------------------------------------------------------- /examples/echo-eventlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/examples/echo-eventlet.py -------------------------------------------------------------------------------- /examples/echo-gevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/examples/echo-gevent.py -------------------------------------------------------------------------------- /examples/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/examples/echo.py -------------------------------------------------------------------------------- /examples/templates/clock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/examples/templates/clock.html -------------------------------------------------------------------------------- /examples/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/examples/templates/index.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/flask_sock/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/src/flask_sock/__init__.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_flask_sock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/tests/test_flask_sock.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/flask-sock/HEAD/tox.ini --------------------------------------------------------------------------------