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.3.2.tar.gz
(17.0 kB
view details)
Built Distribution
File details
Details for the file Flask-SocketIO-5.3.2.tar.gz
.
File metadata
- Download URL: Flask-SocketIO-5.3.2.tar.gz
- Upload date:
- Size: 17.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11d1d78b8805cda351b27828a110b88c74a573be62b07f7f5a519fb67fae0a58 |
|
MD5 | c9373e11eaaf624f31f2fe1af40b14ba |
|
BLAKE2b-256 | 70b370d1f126998189db30f4fab0102d8c9ae05de071f0297123ee255db08e51 |
Provenance
File details
Details for the file Flask_SocketIO-5.3.2-py3-none-any.whl
.
File metadata
- Download URL: Flask_SocketIO-5.3.2-py3-none-any.whl
- Upload date:
- Size: 17.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04093e3ca144467f9731c376796aff105d182ac4cccfcb056d05d567a675f306 |
|
MD5 | 2c5cf216250f67a78d9eb6308b5f4c31 |
|
BLAKE2b-256 | 5d105b3b69c51e88868e9a3ef97ae311a8daa8a4dd7200d887109a51f9cb3d9b |