├── .gitignore ├── Readme.md ├── api ├── TaskAPI.py ├── TaskByIDAPI.py └── __init__.py ├── app.py └── reqirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrajranjan/flask-crud-rest-starter-kit/HEAD/Readme.md -------------------------------------------------------------------------------- /api/TaskAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrajranjan/flask-crud-rest-starter-kit/HEAD/api/TaskAPI.py -------------------------------------------------------------------------------- /api/TaskByIDAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrajranjan/flask-crud-rest-starter-kit/HEAD/api/TaskByIDAPI.py -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrajranjan/flask-crud-rest-starter-kit/HEAD/api/__init__.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrajranjan/flask-crud-rest-starter-kit/HEAD/app.py -------------------------------------------------------------------------------- /reqirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrajranjan/flask-crud-rest-starter-kit/HEAD/reqirements.txt --------------------------------------------------------------------------------