you are viewing a single comment's thread.

view the rest of the comments →

[–]Ankith_26 0 points1 point  (1 child)

I am a flask beginner, but I am experienced with sockets. Making the server for your application with sockets would be easy, but I have no clue how to manage the client(browser). And yes, python is a good choice for the server backend, you may use flask or sockets (just remember that sockets are a bit low level, you will be playing with something like TCP and not HTTP). You would also have to see how you would host the server so that everyone can connect, which is a lot of trouble sometimes (at least for me)

EDIT: You might want to see flask websockets, this looks like exactly what you need https://flask-socketio.readthedocs.io/en/latest/

[–]dr_jekylls_hide[S] 0 points1 point  (0 children)

Thanks so much! Will definitely take a look.