Flask - WebSocket and Real-Time
What will be the output when the following Flask-SocketIO event handler receives a 'ping' event?
@socketio.on('ping')
def handle_ping():
socketio.emit('pong')
