REST-API

Python

Structure Your Project with Flask Blueprint

Blueprint is a way to organize related code in the same module. Blueprint allows us to simplify complex project by dividing it in smaller modules.

Read
Python

Flask with SQLAlchemy & Marshmallow

In the article we will build a simple REST API using Flask, SQLAlchemy and Marshmallow. We will be building a note taking application where these two API endpoints /note/ and /note/<id>/ will be available.

Read