by admin | Apr 23, 2020 | Flask
Email verification We all know that email-verification plays a significant role in today’s world for security reasons. In the process of email verification, a random number, text, and combination of both sent to the user mail id. This verification code sometimes...
by admin | Apr 23, 2020 | Flask
Flask SQLite Flask allows us to use the SQLite3 which is one of the python modules. It is used for creating database web applications. To understand this, we will be going to create a CRUD application. CRUD Application in the Flask Here we will manage the...
by admin | Apr 23, 2020 | Flask
Flask-Mail Extension All web framework provides the basic and advanced features like mail extension. But from the beginning of the tutorial, we know that flask lies in the category of the micro web framework. Flask has its limitations in providing the app...
by admin | Apr 23, 2020 | Flask
Flask Message Flashing All applications and GUI(or the graphic user interfaces) are all about the feedback. If the users do not like the website then they start hating the application. To avoid this situation, an app or website must have enough feedback of the...
by mayankjtp | Jan 17, 2020 | Flask
Redirect is also a function provided by the flask. It is called redirect() function. When this function is called, it returns a response object and also redirects the user to another location with the specific code. The syntax of the redirect function is...
by mayankjtp | Jan 17, 2020 | Flask
Uploading files using the Flask framework is a straightforward task. You need an HTML form with the enctype attribute and the URL manager, which retrieves the file and saves the object in the desired location. These files are temporarily stored on the server and then...
by mayankjtp | Jan 17, 2020 | Flask
In the session, the data is saved on the server. It can be determined as a time interval in which the client accesses the server until the user logs off. The data between them is stored in a temporary folder on the server. Each user is assigned a specific session ID....
by mayankjtp | Jan 17, 2020 | Flask
A cookie is a kind of text file that is stored on a client’s computer, whose purpose is to remember and track data related to the use of the client to improve the website based on the user experience and Statistics of the website. To access cookies, you can use...
by mayankjtp | Jan 17, 2020 | Flask
The flask object has a significant role to play because it is the request object that holds the data when the data is sent form an html form in the form of information until it reaches the server. The request object performs all the data processing, error handling,...
by mayankjtp | Jan 17, 2020 | Flask
What are templates? Have you ever tried to build a website? Did you encounter the problem that keeps the style of the website consistent, did you have to write the same code several times? Have you ever tried to change the style of that website? If your website...