Flask Redirect and Errors Flask class provides the redirect() function which redirects the user to some specified URL with the specified status…
variable rules
-
-
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.…
-
First Flask application In this section of the tutorial, we will build our first python website built using the Flask framework. In…
-
Flask App routing App routing is used to map the specific URL with the associated function that is intended to perform some…
-
Flask Cookies The cookies are stored in the form of text files on the client’s machine. Cookies are used to track the…