Is it possible to use rooms in python-socketio
?
#779
Answered
by
miguelgrinberg
TechStudent10
asked this question in
Q&A
-
I am using a |
Beta Was this translation helpful? Give feedback.
Answered by
miguelgrinberg
Aug 29, 2021
Replies: 1 comment 1 reply
-
Joining rooms is a server function, the client has to request this through an event to the server, then the server can put the client in a room. Since you are using Flask-SocketIO you should be able to use rooms just fine. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
TechStudent10
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Joining rooms is a server function, the client has to request this through an event to the server, then the server can put the client in a room. Since you are using Flask-SocketIO you should be able to use rooms just fine.