├── .gitignore ├── README.md ├── app.py ├── requirements.txt ├── screenshot-for-readme.png ├── templates └── index.html └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/python-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/python-chat/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/python-chat/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/python-chat/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshot-for-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/python-chat/HEAD/screenshot-for-readme.png -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/python-chat/HEAD/templates/index.html -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/python-chat/HEAD/wsgi.py --------------------------------------------------------------------------------