Metadata-Version: 2.1
Name: flask-sock
Version: 0.7.0
Summary: WebSocket support for Flask
Home-page: https://github.com/miguelgrinberg/flask-sock
Author: Miguel Grinberg
Author-email: miguel.grinberg@gmail.com
Project-URL: Bug Tracker, https://github.com/miguelgrinberg/flask-sock/issues
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: flask >=2
Requires-Dist: simple-websocket >=0.5.1
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'

# flask-sock
[![Build status](https://github.com/miguelgrinberg/flask-sock/workflows/build/badge.svg)](https://github.com/miguelgrinberg/flask-sock/actions) [![codecov](https://codecov.io/gh/miguelgrinberg/flask-sock/branch/main/graph/badge.svg)](https://codecov.io/gh/miguelgrinberg/flask-sock)

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

- [Documentation](http://flask-sock.readthedocs.io/en/latest/)
- [PyPI](https://pypi.python.org/pypi/flask-sock)
- [Change Log](https://github.com/miguelgrinberg/flask-sock/blob/main/CHANGES.md)
