Python flask.ext.socketio.SocketIO() Examples

The following are 1 code examples of flask.ext.socketio.SocketIO(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module flask.ext.socketio , or try the search function .
Example #1
Source File: test_factory.py    From cloud-asr with Apache License 2.0 6 votes vote down vote up
def create_socketio(self):
        app = Flask(__name__)
        app.config['DEBUG'] = True
        return SocketIO(app)