I n my project I have users who connect to a waiting room, after a certain time, I run an algorithm and then redirect all the users to a different room. In order to this I use sockets. Until now I have been using django_channels with daphne on Asgi, however it hasn’t been 100% reliable. I need something that will work all the time. I am looking for an alternative. I need it to accurately tell me who is in the room and who has left etc. Some of the options are:
- Pyzmq
- websockets - websockets — websockets 9.1 documentation
- Autobahn|Python
- python-socketio
- websocket-client
- graphene
- converse js
I would really appreciate feedback. I would prefer something which can integrate easily with django if possible. The website is up on AWS.
Thanks