flask 2.2.2-2ubuntu1 source package in Ubuntu
Changelog
flask (2.2.2-2ubuntu1) lunar; urgency=medium * Merge from Debian unstable. Remaining changes: - d/control: Demote python3-{asgiref,dotenv} to Suggests; these are optional dependencies and neither is in Ubuntu main. flask (2.2.2-2) unstable; urgency=medium * Uploading to unstable. flask (2.2.2-1) experimental; urgency=medium [ Debian Janitor ] * Trim trailing whitespace. [ Thomas Goirand ] * Team upload. * New upstream release. * Add myself as uploader. * Fixed (build-)depends for this release. -- Lukas Märdian <email address hidden> Thu, 05 Jan 2023 18:02:34 +0100
Upload details
- Uploaded by:
- Lukas Märdian
- Uploaded to:
- Lunar
- Original maintainer:
- Ubuntu Developers
- Architectures:
- all
- Section:
- python
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Lunar | release | main | python |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
flask_2.2.2.orig.tar.gz | 661.5 KiB | 642c450d19c4ad482f96729bd2a8f6d32554aa1e231f4f6b4e7e5264b16cca2b |
flask_2.2.2-2ubuntu1.debian.tar.xz | 7.5 KiB | 1531f4b32c2280f6e0894a45b2f760775663c8fe204429612b513834988c4ba7 |
flask_2.2.2-2ubuntu1.dsc | 2.5 KiB | 178005a69a86a98b3b663b2be95d58ab43c67f952464d79e257453347a23a9b7 |
Available diffs
- diff from 2.0.3-1ubuntu1 to 2.2.2-2ubuntu1 (162.0 KiB)
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.