File tree 4 files changed +19
-78
lines changed
4 files changed +19
-78
lines changed Original file line number Diff line number Diff line change @@ -85,11 +85,13 @@ Werkzeug development server is still used and configured properly inside
85
85
available, else the gevent web server is used. If eventlet and gevent are not
86
86
installed, the Werkzeug development web server is used.
87
87
88
- The command line interface based on click introduced in Flask 0.11 is also
89
- supported. This extension provides a new version of the ``flask run `` command
90
- that is appropriate for starting the Socket.IO server. Example usage::
91
-
92
- $ FLASK_APP=my_app.py flask run
88
+ The ``flask run `` command introduced in Flask 0.11 can be used to start a
89
+ Flask-SocketIO development server based on Werkzeug, but this method of starting
90
+ the Flask-SocketIO server is not recommended due to lack of WebSocket support.
91
+ Previous versions of this package included a customized version of the
92
+ ``flask run `` command that allowed the use of WebSocket on eventlet and gevent
93
+ production servers, but this functionality has been discontinued in favor of the
94
+ ``socketio.run(app) `` startup method shown above.
93
95
94
96
The application must serve a page to the client that loads the Socket.IO
95
97
library and establishes a connection::
Original file line number Diff line number Diff line change
1
+ import os
1
2
import sys
2
3
3
4
# make sure gevent-socketio is not installed, as it conflicts with
@@ -210,6 +211,17 @@ def loads(*args, **kwargs):
210
211
self .server_options .pop ('resource' , None ) or 'socket.io'
211
212
if resource .startswith ('/' ):
212
213
resource = resource [1 :]
214
+ if os .environ .get ('FLASK_RUN_FROM_CLI' ):
215
+ if self .server_options .get ('async_mode' ) is None :
216
+ app .logger .warning (
217
+ 'Flask-SocketIO is Running under Werkzeug, WebSocket is '
218
+ 'not available.' )
219
+ self .server_options ['async_mode' ] = 'threading'
220
+ elif self .server_options ['async_mode' ] != 'threading' :
221
+ raise RuntimeError (
222
+ 'The "flask run" command does not support {}, please '
223
+ 'start your server with "socketio.run(app)".' .format (
224
+ self .server_options ['async_mode' ]))
213
225
self .server = socketio .Server (** self .server_options )
214
226
self .async_mode = self .server .async_mode
215
227
for handler in self .handlers :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 24
24
zip_safe = False ,
25
25
include_package_data = True ,
26
26
platforms = 'any' ,
27
- entry_points = {
28
- 'flask.commands' : [
29
- 'run=flask_socketio.cli:run'
30
- ],
31
- },
32
27
install_requires = [
33
28
'Flask>=0.9' ,
34
29
'python-socketio>=2.1.0'
You can’t perform that action at this time.
0 commit comments