├── README.md ├── main.py ├── static └── css │ └── style.css └── templates ├── base.html ├── home.html └── room.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Python-Live-Chat-App/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Python-Live-Chat-App/HEAD/main.py -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Python-Live-Chat-App/HEAD/static/css/style.css -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Python-Live-Chat-App/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Python-Live-Chat-App/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Python-Live-Chat-App/HEAD/templates/room.html --------------------------------------------------------------------------------