Boilerplate template for a Python Flask_Restful applications with Flask-SQLAlchemy and SQLite example. Use this template to quick start rest api development with flask.
- Install postman chrome extension
- Make sure you have working installation of python 3 if not get it installed
- Create a virtualenv with command : python -m venv venv
- Activate virtualenv
- Windows : venv\Scripts\activate
- Mac and Ubuntu : . venv/bin/activate
- Install dependencies : pip install -r requirements.txt
Once you install or deploy app you can test it by calling the GET, POST, PUT, and DELETE method of /api/hello with postman.