Unable To Run Flask App With Gevent Installed
I have a Flask application that won't run when gevent is installed. Here is my app.py file: from app import create_app, socketio app = create_app() if __name__ == '__main__':
Solution 1:
for development environment while using socketio.run(app), its better using eventlet.
Post a Comment for "Unable To Run Flask App With Gevent Installed"