In this project I create a small room chat application using Flask-socketIO
First create a venv folder:
$ python3 -m venv venvThen activate the venv:
$ source venv/bin/activateInstall the dependencies:
$ pip install -r requirements.txtRun the server:
$ python main.pyThe server should then be running. Got to http://localhost:5000 with you browser and you will see and should be able to create new rooms or join some existing one with their code and witte some messages.
At the end, don't forget to stop the server by pressing CRTL+C and deactivate the venv when you're done:
$ deactive