Questions tagged [flask-socketio]

Flask-SocketIO lets Flask python applications access low latency bi-directional communications between the clients and the server

Flask-SocketIO is an open source library which implements the abstraction, for delivering low latency client-server communication in a application developed by Miguel Grinberg.

1052 questions
-4
votes
1 answer

How can I send a request to flask socket.io with the click of a button?

The following source code sends a request to the server upon page load, and when the task is done, the page is updated automatically. app.py from flask import Flask, render_template from flask_socketio import SocketIO, emit, disconnect from time…
user366312
  • 16,949
  • 65
  • 235
  • 452
1 2 3
70
71