├── .gitignore ├── README.md ├── bookmanager.py └── templates └── home.html /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/* 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixhobbits/flask-crud-app/HEAD/README.md -------------------------------------------------------------------------------- /bookmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixhobbits/flask-crud-app/HEAD/bookmanager.py -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixhobbits/flask-crud-app/HEAD/templates/home.html --------------------------------------------------------------------------------