A sample socketIO with Flask, using Application Factory. Sample shows the use of a single thread as daemon to send data to client.
as app
export FLASK_APP=flaskr
flask run
as wsgi server
gunicorn --worker-class eventlet -w 1 -b localhost:8080 wsgi
As seen above (gunicorn...)
This project is licensed under the MIT License