Last updated: Mar 28, 2022

Flask

Flask is a Python-based lightweight web application framework. It provides features like routing and page rendering in a very simple and easy-to-use way. Flask is also called python microframework as features like authentication, forms validation aren't present directly but we can still build web apps without worrying about low-level issues like protocols and thread management. Here we will learn about all basics of flasks, routing and how to create dynamic routes, how to use templates to render web pages, how to use cookies, authentication in the flask, and some other advanced features.
Flask Introduction And Overview
In this blog, we will learn about the basics of Python WebFramework - Flask, Uses of Flask, and Features of Flask framework.
Flask Environment And First Application
In this blog, we will learn about the Flask environment, the installation of Flask in our system, and the creation of our first Flask application.
App Routing In Flask
In this blog, we will learn how to create an App Route in Flask, different methods to add routes to the flask application, and a few code examples.
Variable Rules In Flask
In this blog, we will learn how to create dynamic routes in Flask using Variable Rules with the help of code examples.
Flask URL Building
This article will contain a brief overview of URL Building using Flask. We will further discuss how to build URLs using Flask and the different uses of URL building.
HTTP Methods in Flask
HTTP stands for hypertext transfer protocol, and it is the foundation of data transfer on the internet. All web frameworks, including Flask, must have many HTTP methods for data transfer.
Templates in Flask
This blog discusses Templates in Flask, their uses, and practical examples.
Static File Handling in Flask
Static files that facilitate Web display, such as javascript files or CSS files, are frequently required by web applications.
JSON Response Flask API
In this blog, we will learn how to create a REST API that returns a simple JSON object with the help of Flask.
Flask Request Object
This blog discusses Flask Request Objects, their uses, and a practical example of query arguments.
Author Parth
0 upvotes
Sending form data in a Flask Application to a template
This article discusses handling form data in a Flask application. We will populate the received data to another template as well.
Handling Cookies in Flask
This article discusses the handling of cookies in flask applications. Cookies in Flask are present in the response object and are parsed and used accordingly.
User Authentication OAuth in Flask
This blog is about User Authentication using OAuth in Flask. Let's understand it.
Redirect and Error handling in Flask
This blog covers the concept of redirect and error handling in the flask application.
Message flashing in Flask
This blog discusses the practical and theoretical implementation of Message flashing in Flask.
File Uploading in Flask
This blog discusses the theoretical and practical implementations of file uploading in Flask.
Flask Extensions
The blog discusses Flask Extensions. We will learn about the different types of extensions.
Flask Mail
This article introduces you to Flask and how to send mail using Flask and its extensions with a detailed code.
Flask WTForms
This article introduces you to WTForms in Flask, WTForms handling, validation, and submission with the detailed code and explanation.
Flask SQLite MEDIUM
This article introduces you to flask SQLite, how to connect it to a database using queries and CRUD application with a detailed description and code.
Flask Sijax
In this blog, we'll be learning Flask Sijax, its installation, configuration, and how to build an application using Sijax.
Flask Deployment
This blog will cover the topic of deployment and flask app deployment on different servers. Furthermore, we will see how to deploy the flask app on localhost, Heroku, and apache.
Flask FastCGI
This article will contain a brief overview of FastCGI in Python using Flask. We will further discuss how to implement FastCGI using Flask and the different applications of FastCGI.
CRUD API FLASK
In this blog, we will learn how to build a RESTful CRUD API with Flask by creating a Product Management web application.