flask 2.2.2-3ubuntu1 source package in Ubuntu
Changelog
flask (2.2.2-3ubuntu1) mantic; urgency=low * Merge from Debian unstable. Remaining changes: - d/control: Demote python3-dotenv to Suggests; these are optional dependencies and neither is in Ubuntu main. * Dropped changes: - d/control: Demote python3-asgiref to Suggests: the package is now in main -- Gianfranco Costamagna <email address hidden> Tue, 30 May 2023 08:39:36 +0200
Upload details
- Uploaded by:
- Gianfranco Costamagna
- Uploaded to:
- Mantic
- Original maintainer:
- Debian Python Team
- Architectures:
- all
- Section:
- python
- Urgency:
- Low Urgency
See full publishing history Publishing
Series | Published | Component | Section |
---|
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
flask_2.2.2.orig.tar.gz | 661.5 KiB | 642c450d19c4ad482f96729bd2a8f6d32554aa1e231f4f6b4e7e5264b16cca2b |
flask_2.2.2-3ubuntu1.debian.tar.xz | 8.5 KiB | fdfb43e632c9b2069866abdf4b86ab5423d3a546e01c2a44ecdfc529e458e192 |
flask_2.2.2-3ubuntu1.dsc | 2.5 KiB | f7dc18b8e6833fc1c0f5c3277a1ee9aed9fbbf29d3e39e658058701a9c3dc2d5 |
Available diffs
Binary packages built by this source
- python-flask-doc: micro web framework based on Werkzeug and Jinja2 - documentation
Flask is a micro web framework for Python based on Werkzeug, Jinja 2 and good
intentions. A minimal Flask application looks like that:
.
from flask import Flask
app = Flask(__name__)
.
@app.route("/")
def hello():
return "Hello World!"
.
if __name__ == '__main__':
app.run()
.
This package contains the documentation for Flask.
- python3-flask: micro web framework based on Werkzeug and Jinja2 - Python 3.x
Flask is a micro web framework for Python based on Werkzeug, Jinja 2 and good
intentions. A minimal Flask application looks like that:
.
from flask import Flask
app = Flask(__name__)
.
@app.route("/")
def hello():
return "Hello World!"
.
if __name__ == '__main__':
app.run()
.
This package contains the Python 3.x module.