DEV Community

Cover image for What is Flask
amigos-maker
amigos-maker

Posted on

What is Flask

Flask is a web framework that offers tools, libraries, and technologies suitable for building a web application. This web application can come in the form of web pages, blogs, or even an extensive web-based calendar app or a commercial site.

Flask is one of the best micro-frameworks, as it has little to no dependencies on external libraries.

You can use it to make all kinds of web apps.

An advantage of using Flask might be the fact that this framework is light, and the risk for encountering Flask security bugs is minimal.

At the same time, a drawback might be the fact that it requires quite some effort from the part of the programmer in order to boost the list of dependencies via plugins.

You should know the basics of Python programming before learning Flask.

Main components of Flask

Flask is interconnected to two main parts.

  • Werkzeug is a utility library meant for usage with the Python language. Mostly, it is a Web Server Gateway Interface or WSGI app that can create software items for request, response, or utility functions.

  • Jinja is a template engine for Python programming purposes, and it resembles the Django web frameworks templates.

Flask configuration

Similar to other Python libraries, the Flask package can be installed from the Python Package Index. It sets up a directory to function in, after which the Flask package is installed. Mostly, the Flask application has a direct and straightforward way of accessing a SQL

Database.

A great thing about Flask is the template engine available. The purpose of such templates is to allow basic layout configuration for web pages with the purpose of mentioning which element is susceptible to change.

As such, you will be able to define your template once and keep it the same all over the pages of a website. With the aid of a template engine, you will be able to save a lot of time when setting up your application, and even when it comes to updates or maintenance issues.

Flask main features

So you know a bit about Flask. What are the main features?

  1. Features development servers and debugger functionalities;
  2. It comes with integrated aid for unit testing;
  3. It uses Jinja2 template styles;
  4. It is WSGI compliant;
  5. It is based on Unicode;
  6. It is suitable for Google App Engine;
  7. It offers access to extensions to better functionalities;
  8. It allows the creation of secure cookies.

Overall, Flask is easy to learn and manage as a scalable tool. It allows any type of approach or programming technique, as there are no restrictions included on the app architecture or data abstraction layers.

You can even run it on embedded systems like a Raspberry Pi. Your web app can be loaded on any device, including mobile phone, desktop pc or even a tv.

Besides, it benefits from a community that offers support and solutions suggestions to a multitude of problems that programmers might face when using Flask in Python. The core benefit of Flask is that the programmer controls everything, while he or she will get a deeper understanding of how internal mechanics of frameworks function.

Related links:

Top comments (0)