Flask is a micro
web framework
A web framework (WF) or web application framework (WAF) is a software framework that is designed to support the development of web applications including web services, web resources, and web APIs. Web frameworks provide a standard way to build a ...
written in
Python. It is classified as a
microframework because it does not require particular tools or libraries. It has no
database
In computing, a database is an organized collection of data or a type of data store based on the use of a database management system (DBMS), the software that interacts with end users, applications, and the database itself to capture and a ...
abstraction layer, form validation, or any other components where pre-existing third-party libraries provide common functions. However, Flask supports extensions that can add application features as if they were implemented in Flask itself. Extensions exist for
object-relational mappers, form validation, upload handling, various open authentication technologies and several common framework related tools.
Applications that use the Flask framework include
Pinterest and
LinkedIn
LinkedIn () is an American business and employment-oriented Social networking service, social network. It was launched on May 5, 2003 by Reid Hoffman and Eric Ly. Since December 2016, LinkedIn has been a wholly owned subsidiary of Microsoft. ...
.
History
Flask was created by
Armin Ronacher of Pocoo, an international group of Python enthusiasts formed in 2004. According to Ronacher, the idea was originally an
April Fool's joke that was popular enough to make into a serious application.
The name is a play on the earlier Bottle framework.
When Ronacher and Georg Brandl created a bulletin board system written in Python in 2004, the Pocoo projects Werkzeug and
Jinja were developed.
In April 2016, the Pocoo team was disbanded and development of Flask and related libraries passed to the newly formed Pallets project. Since 2018, Flask-related data and objects can be rendered with
Bootstrap.
Flask has become popular among Python enthusiasts. it has the second-most number of stars on
GitHub
GitHub () is a Proprietary software, proprietary developer platform that allows developers to create, store, manage, and share their code. It uses Git to provide distributed version control and GitHub itself provides access control, bug trackin ...
among Python web-development frameworks, only slightly behind
Django, and was voted the most popular web framework in the Python Developers Survey for years between and including 2018 and 2022.
Components
The microframework Flask is part of the ''Pallets Projects'' (formerly ''Pocoo''), and based on several others of them, all under a
BSD license.
Werkzeug
Werkzeug (
German for "tool") is a utility library for the Python programming language for
Web Server Gateway Interface (WSGI) applications. Werkzeug can instantiate objects for request, response, and utility functions. It can be used as the basis for a custom
software framework
In computer programming, a software framework is a software abstraction that provides generic functionality which developers can extend with custom code to create applications. It establishes a standard foundation for building and deploying soft ...
and supports Python 2.7 and 3.5 and later.
Jinja
Jinja, also by Ronacher, is a
template engine for the Python programming language. Similar to the Django web framework, it handles templates in a
sandbox
A sandbox is a sandpit, a wide, shallow playground construction to hold sand, often made of wood or plastic.
Sandbox or sand box may also refer to:
Arts, entertainment, and media
* Sandbox (band), a Canadian rock music group
* Sandbox (Gu ...
.
MarkupSafe
MarkupSafe is a
string handling library for the Python programming language. The eponymous MarkupSafe
type extends the Python string type and marks its contents as "safe"; combining MarkupSafe with regular strings automatically escapes the unmarked strings, while avoiding double escaping of already marked strings.
ItsDangerous
ItsDangerous is a safe
data serialization library for the Python programming language. It is used to store the
session of a Flask application in a
cookie without allowing users to tamper with the session contents.
Features
* Development server and
debugger
A debugger is a computer program used to test and debug other programs (the "target" programs). Common features of debuggers include the ability to run or halt the target program using breakpoints, step through code line by line, and display ...
* Integrated support for
unit testing
Unit testing, component or module testing, is a form of software testing by which isolated source code is tested to validate expected behavior.
Unit testing describes tests that are run at the unit-level to contrast testing at the Integration ...
*
RESTful request dispatching
* Uses Jinja templating
* Support for secure cookies (client side sessions)
* 100%
WSGI 1.0 compliant
*
Unicode
Unicode or ''The Unicode Standard'' or TUS is a character encoding standard maintained by the Unicode Consortium designed to support the use of text in all of the world's writing systems that can be digitized. Version 16.0 defines 154,998 Char ...
-based
* Complete documentation
*
Google App Engine compatibility
* Extensions available to extend functionality
Example
The following code shows a simple web application that displays "
Hello World!" when visited:
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello() -> str:
return "Hello World"
if __name__ "__main__":
app.run()
See also
*
Django (web framework)
Django ( ; sometimes stylized as django) is a free and open-source software, free and open-source, Python (programming language), Python-based web framework that runs on a web server. It follows the model–template–views (MTV) Architectural ...
*
FastAPI
*
Jam.py
*
Pylons project
*
Tornado
A tornado is a violently rotating column of air that is in contact with the surface of Earth and a cumulonimbus cloud or, in rare cases, the base of a cumulus cloud. It is often referred to as a twister, whirlwind or cyclone, although the ...
*
Web2py
*
Comparison of web frameworks
References
External links
*
{{DEFAULTSORT:Flask (Programming)
Free software programmed in Python
Python (programming language) web frameworks
Software using the BSD license
Articles with example Python (programming language) code