├── .gitignore ├── 1.PNG ├── 10.PNG ├── 2.PNG ├── 3.PNG ├── 4.PNG ├── 5.PNG ├── 6.PNG ├── 7.PNG ├── 8.PNG ├── 9.PNG ├── Procfile ├── README.md ├── app ├── __init__.py ├── db │ └── flask-api.db └── module │ ├── __init__.py │ ├── const.py │ ├── controller.py │ └── models.py ├── requirements.txt └── run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/.gitignore -------------------------------------------------------------------------------- /1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/1.PNG -------------------------------------------------------------------------------- /10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/10.PNG -------------------------------------------------------------------------------- /2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/2.PNG -------------------------------------------------------------------------------- /3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/3.PNG -------------------------------------------------------------------------------- /4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/4.PNG -------------------------------------------------------------------------------- /5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/5.PNG -------------------------------------------------------------------------------- /6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/6.PNG -------------------------------------------------------------------------------- /7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/7.PNG -------------------------------------------------------------------------------- /8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/8.PNG -------------------------------------------------------------------------------- /9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/9.PNG -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/db/flask-api.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/app/db/flask-api.db -------------------------------------------------------------------------------- /app/module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/module/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/app/module/const.py -------------------------------------------------------------------------------- /app/module/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/app/module/controller.py -------------------------------------------------------------------------------- /app/module/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/app/module/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piinalpin/flask-rest-api/HEAD/run.py --------------------------------------------------------------------------------