Best Flask open-source libraries and packages

Flask restful boilerplate

Starter template for developing Restful APIS with flask
Updated 8 months ago

flask-restful-boilerplate

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 instructions

  • 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.

Deploy