Update gitignore

This commit is contained in:
2022-12-29 14:11:18 +00:00
parent d90605eab5
commit 73b51fada6
4 changed files with 338 additions and 5 deletions

12
app.py
View File

@ -1,12 +1,20 @@
from flask import Flask, render_template
from flask_socketio import SocketIO, emit
app = Flask(__name__)
socketio = SocketIO(app)
@app.route('/')
def index():
return render_template('index.html')
@socketio.event
def message(data):
print(data)
emit('message', data, broadcast=True)
if __name__ == '__main__':
socketio.run(app)
socketio.run(app, log_output=True)