ランキングに戻る
miguelgrinberg/Flask-SocketIO
PythonSocket.IO integration for Flask applications.
pythonflaskflask-socketiosocket-iowebsocket
主要指標
スター成長
スター
5.5k
フォーク
902
週間成長
—
Issue
6
2k4k
2014年2月2016年3月2018年3月2020年4月2022年5月2024年6月2026年7月
成果物PyPI
pip install flask-socketioREADME
Flask-SocketIO
Socket.IO integration for Flask applications.
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.
関連リポジトリ