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.4.0.tar.gz
(37.3 kB
view details)
Built Distribution
File details
Details for the file flask_socketio-5.4.0.tar.gz
.
File metadata
- Download URL: flask_socketio-5.4.0.tar.gz
- Upload date:
- Size: 37.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e08dcb608e276a7904b09a679fae5723608ab7b4c860741ca868286139621bd0 |
|
MD5 | 880eaf6fa10bd2d6c75acb783e11a12a |
|
BLAKE2b-256 | b3c3736c0919176d70209a1aff2d931e65d9e94c8e0e7ef5016f5041a86b0fb4 |
Provenance
File details
Details for the file Flask_SocketIO-5.4.0-py3-none-any.whl
.
File metadata
- Download URL: Flask_SocketIO-5.4.0-py3-none-any.whl
- Upload date:
- Size: 18.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5478e7f3ab15ba5ba9bf139e95b2e09c108051ae4bb15b53bcf14d0aa8e67996 |
|
MD5 | 389dd68d481bb85bf7d0c784c157b6d6 |
|
BLAKE2b-256 | e84c7e2c9c29f1931fb08cd222609356c70bd93066b1d10d84c746ce7d0fb4f4 |