Flask vs. Django Django and Flask are the web frameworks of Python. As we know, Python is the most versatile programming language…
static files
-
-
Flask SQLite Flask can make use of the SQLite3 module of the python to create the database web applications. In this section…
-
Flask Templates In the previous examples, we have returned the simple string as the response from the view function. Although, flask facilitates…
-
Python Flask Tutorial Flask Tutorial provides the basic and advanced concepts of the Python Flask framework. Our Flask tutorial is designed for…
-
Flask URL Building The url_for() function is used to build a URL to the specific function dynamically. The first argument is the…
-
Flask-WTF WTF stands for WT Forms which is intended to provide the interactive user interface for the user. The WTF is a…
-
Flask Redirect and Errors Flask class provides the redirect() function which redirects the user to some specified URL with the specified status…
-
Flask Request Object In the client-server architecture, the request object contains all the data that is sent from the client to the…
-
Flask Session The concept of a session is very much similar to that of a cookie. However, the session data is stored…
-
Flask SQLAlchemy Flask SQLAlchemy is an ORM tool which establishes the relationship between the objects and the tables of the relational databases.…