cydrobolt / Flask-SocketIO

Socket.IO integration for Flask applications.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flask-SocketIO

Build Status

Socket.IO integration for Flask applications.

Example

from flask import Flask, render_template
from flask.ext.socketio import SocketIO, emit

app = Flask(__name__)
app.config['SECRET_KEY'] = 'secret!'
socketio = SocketIO(app)

@app.route('/')
def index():
    return render_template('index.html')

@socketio.on('my event')
def test_message(message):
    emit('my response', {'data': 'got it!'})

if __name__ == '__main__':
    socketio.run(app)

Resources

About

Socket.IO integration for Flask applications.

License:MIT License