Skip to content

Socket.IO integration for Flask applications.

License

Notifications You must be signed in to change notification settings

python3/Flask-SocketIO

Repository files navigation

Flask-SocketIO

Build Status

Socket.IO integration for Flask applications.

Installation

You can install this package as usual with pip:

pip install flask-socketio 

Example

fromflaskimportFlask, render_templatefromflask_socketioimportSocketIO, emitapp=Flask(__name__) app.config['SECRET_KEY'] ='secret!'socketio=SocketIO(app) @app.route('/')defindex(): returnrender_template('index.html') @socketio.on('my event')deftest_message(message): emit('my response',{'data': 'got it!'}) if__name__=='__main__': socketio.run(app)

Resources

About

Socket.IO integration for Flask applications.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python86.9%
  • HTML11.9%
  • Shell1.2%