├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── app ├── __init__.py ├── models.py ├── routes.py └── schema.py ├── config.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatematzuhora/Flask-SQLAlchemy-RESTful-CRUD/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatematzuhora/Flask-SQLAlchemy-RESTful-CRUD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatematzuhora/Flask-SQLAlchemy-RESTful-CRUD/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatematzuhora/Flask-SQLAlchemy-RESTful-CRUD/HEAD/app.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatematzuhora/Flask-SQLAlchemy-RESTful-CRUD/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatematzuhora/Flask-SQLAlchemy-RESTful-CRUD/HEAD/app/models.py -------------------------------------------------------------------------------- /app/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatematzuhora/Flask-SQLAlchemy-RESTful-CRUD/HEAD/app/routes.py -------------------------------------------------------------------------------- /app/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatematzuhora/Flask-SQLAlchemy-RESTful-CRUD/HEAD/app/schema.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatematzuhora/Flask-SQLAlchemy-RESTful-CRUD/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatematzuhora/Flask-SQLAlchemy-RESTful-CRUD/HEAD/requirements.txt --------------------------------------------------------------------------------