Structure Your Project with Flask Blueprint
Flask is a lightweight WSGI web application framework based on Python. It is designed in such a way that it will only supply the core components of a web application and it lets the developer choose rest of the things. It leaves all the design and architecture level decisions to the developer. As a result it is very easy to get started start with Flask. But day by day when the application gets bigger and more...
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// will be available....