├── .gitignore ├── README.md ├── api.py ├── create_db.py ├── instance └── database.db └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitdagray/python-flask-rest-api/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitdagray/python-flask-rest-api/HEAD/api.py -------------------------------------------------------------------------------- /create_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitdagray/python-flask-rest-api/HEAD/create_db.py -------------------------------------------------------------------------------- /instance/database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitdagray/python-flask-rest-api/HEAD/instance/database.db -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitdagray/python-flask-rest-api/HEAD/requirements.txt --------------------------------------------------------------------------------