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.6.tar.gz
(17.2 kB
view details)
Built Distribution
File details
Details for the file Flask-SocketIO-5.3.6.tar.gz
.
File metadata
- Download URL: Flask-SocketIO-5.3.6.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb8f9f9123ef47632f5ce57a33514b0c0023ec3696b2384457f0fcaa5b70501c |
|
MD5 | 26d26b2d623235835aff1acd14eebad1 |
|
BLAKE2b-256 | 33b2aa882384d130523d7d2d6eed33403aed68a438622df388d92171d7657960 |
File details
Details for the file Flask_SocketIO-5.3.6-py3-none-any.whl
.
File metadata
- Download URL: Flask_SocketIO-5.3.6-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e62d2131842878ae6bfdd7067dfc3be397c1f2b117ab1dc74e6fe74aad7a579 |
|
MD5 | 6c7d90ef97348e25f0c7ce5ac6039b00 |
|
BLAKE2b-256 | 56c8dc0be9e26272dc89342868ecc2d9ddb9e31002b4b8e49fdb754aa0f9ecbf |