Socket.IO integration for Flask applications
Project description
Flask-SocketIO
Socket.IO integration for Flask applications.
Sponsors
The following organizations are funding this project:
Socket.IO |
Add your company here! |
---|
Many individual sponsors also support this project through small ongoing contributions. Why not join them?
Installation
You can install this package as usual with pip:
pip install flask-socketio
Example
from flask import Flask, render_template
from flask_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.event
def my_event(message):
emit('my response', {'data': 'got it!'})
if __name__ == '__main__':
socketio.run(app)
Resources
- Tutorial
- Documentation
- PyPI
- Change Log
- Questions? See the questions others have asked on Stack Overflow, or ask your own question.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Flask-SocketIO-5.1.2.tar.gz
(16.2 kB
view hashes)
Built Distribution
Close
Hashes for Flask_SocketIO-5.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb0a1b9924bf899a20311326601e1c659fc9779175f778e495ddc5a438108c54 |
|
MD5 | 690f3020973687072d5255a89bab7279 |
|
BLAKE2b-256 | 21052845470412f8432b921aa59e93b6d8f86aa27247691ee92650c9f70e62e5 |