python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How can I emit Flask-SocketIO requests with callbacks that still work after a user rejoins and their sid changes?
Summarize the Problem
I am using Flask-SocketIO for a project and am basically trying to make it so that users can rejoin a room and "pick up where they left off." To be more specific:
The ...
eshapiro42
Votes: 0
Answers: 1
How to run a coroutine and wait for its result from a sync func
I am trying to run a python socketIO client along side a server. Basically when the server gets a viewer event, the client fires another connection to an upstream server. It then tries to establish a ...
David Dai
Votes: 0
Answers: 0
How can I synchronize multiple socket.io clients accessing a single deque/set/list in python?
I am subscribing to multiple socket.io servers at the same time, all incoming entries get checked whether they have been already processed/received by another websocket client. The servers provide me ...
Userqhl
Votes: 0
Answers: 0
python socketio ow to push tasks regularly?
How to push tasks regularly?
i try it like this but client tips packet queue is empty, aborting
sio = socketio.Server(cors_allowed_origins="*")
app = socketio.WSGIApp(sio, static_files={'/':...
IFCZT
Votes: 0
Answers: 1