Vulnerabilities | |||||
---|---|---|---|---|---|
Version | Suggest | Low | Medium | High | Critical |
3.1.0 | 0 | 0 | 0 | 0 | 0 |
3.0.3 | 0 | 0 | 0 | 0 | 0 |
3.0.2 | 0 | 0 | 0 | 0 | 0 |
3.0.1 | 0 | 0 | 0 | 0 | 0 |
3.0.0 | 0 | 0 | 0 | 0 | 0 |
2.3.3 | 0 | 0 | 0 | 0 | 0 |
2.3.2 | 0 | 0 | 0 | 0 | 0 |
2.3.1 | 0 | 0 | 0 | 1 | 0 |
2.3.0 | 0 | 0 | 0 | 1 | 0 |
2.2.5 | 0 | 0 | 0 | 0 | 0 |
2.2.4 | 0 | 0 | 0 | 1 | 0 |
2.2.3 | 0 | 0 | 0 | 1 | 0 |
2.2.2 | 0 | 0 | 0 | 1 | 0 |
2.2.1 | 0 | 0 | 0 | 1 | 0 |
2.2.0 | 0 | 0 | 0 | 1 | 0 |
2.1.3 | 0 | 0 | 0 | 1 | 0 |
2.1.2 | 0 | 0 | 0 | 1 | 0 |
2.1.1 | 0 | 0 | 0 | 1 | 0 |
2.1.0 | 0 | 0 | 0 | 1 | 0 |
2.0.3 | 0 | 0 | 0 | 1 | 0 |
2.0.2 | 0 | 0 | 0 | 1 | 0 |
2.0.1 | 0 | 0 | 0 | 1 | 0 |
2.0.0rc2 | 0 | 0 | 0 | 1 | 0 |
2.0.0rc1 | 0 | 0 | 0 | 1 | 0 |
2.0.0 | 0 | 0 | 0 | 1 | 0 |
1.1.4 | 0 | 0 | 0 | 1 | 0 |
1.1.3 | 0 | 0 | 0 | 1 | 0 |
1.1.2 | 0 | 0 | 0 | 1 | 0 |
1.1.1 | 0 | 0 | 0 | 1 | 0 |
1.1.0 | 0 | 0 | 0 | 1 | 0 |
1.0.4 | 0 | 0 | 0 | 1 | 0 |
1.0.3 | 0 | 0 | 0 | 1 | 0 |
1.0.2 | 0 | 0 | 0 | 1 | 0 |
1.0.1 | 0 | 0 | 0 | 1 | 0 |
1.0 | 0 | 0 | 0 | 1 | 0 |
0.12.5 | 0 | 0 | 0 | 2 | 0 |
0.12.4 | 0 | 0 | 0 | 2 | 0 |
0.12.3 | 0 | 0 | 0 | 2 | 0 |
0.12.2 | 0 | 0 | 0 | 3 | 0 |
0.12.1 | 0 | 0 | 0 | 3 | 0 |
0.12 | 0 | 0 | 0 | 3 | 0 |
0.11.1 | 0 | 0 | 0 | 3 | 0 |
0.11 | 0 | 0 | 0 | 3 | 0 |
0.10.1 | 0 | 0 | 0 | 3 | 0 |
0.10 | 0 | 0 | 0 | 3 | 0 |
0.9 | 0 | 0 | 0 | 3 | 0 |
0.8.1 | 0 | 0 | 0 | 3 | 0 |
0.8 | 0 | 0 | 0 | 3 | 0 |
0.7.2 | 0 | 0 | 0 | 3 | 0 |
0.7.1 | 0 | 0 | 0 | 3 | 0 |
0.7 | 0 | 0 | 0 | 3 | 0 |
0.6.1 | 0 | 0 | 0 | 3 | 0 |
0.6 | 0 | 0 | 1 | 3 | 0 |
0.5.2 | 0 | 0 | 1 | 3 | 0 |
0.5.1 | 0 | 0 | 1 | 3 | 0 |
0.5 | 0 | 0 | 1 | 3 | 0 |
0.4 | 0 | 0 | 1 | 3 | 0 |
0.3.1 | 0 | 0 | 1 | 3 | 0 |
0.3 | 0 | 0 | 1 | 3 | 0 |
0.2 | 0 | 0 | 1 | 3 | 0 |
0.1 | 0 | 0 | 1 | 3 | 0 |
3.1.0 - This version is safe to use because it has no known security vulnerabilities at this time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform
Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.
BSD - BSD License (Generic)Flask is a lightweight WSGI web application framework. It is designed to make getting started quick and easy, with the ability to scale up to complex applications. It began as a simple wrapper around Werkzeug and Jinja, and has become one of the most popular Python web application frameworks.
Flask offers suggestions, but doesn't enforce any dependencies or project layout. It is up to the developer to choose the tools and libraries they want to use. There are many extensions provided by the community that make adding new functionality easy.
# save this as app.py
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello, World!"
$ flask run
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
The Pallets organization develops and supports Flask and the libraries it uses. In order to grow the community of contributors and users, and allow the maintainers to devote more time to the projects, please donate today.
See our detailed contributing documentation for many ways to contribute, including reporting issues, requesting features, asking or answering questions, and making PRs.