├── README.md ├── app.py ├── requirements.txt └── templates └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # python-mysql-db-proj-1 -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulwagh/python-mysql-db-proj-1/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | pymysql -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulwagh/python-mysql-db-proj-1/HEAD/templates/index.html --------------------------------------------------------------------------------