flask 0.12.2-3 source package in Ubuntu
Changelog
flask (0.12.2-3) unstable; urgency=medium * Change priority from extra to optional * Standards-Version is 4.1.3 now * Remove unwanted license file from docs * debian/patches/0003-Don-t-rely-on-X-Requested-With-for-pretty-print-json.patch: Fix FTBFS (Closes: #884523) * Bump debhelper compat level to 11 * Use Python 3 version of Sphinx for building docs -- Ondřej Nový <email address hidden> Mon, 15 Jan 2018 14:59:22 +0100
Upload details
- Uploaded by:
- Piotr Ożarowski
- Uploaded to:
- Sid
- Original maintainer:
- Piotr Ożarowski
- Architectures:
- all
- Section:
- python
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Bionic | release | main | python |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
flask_0.12.2-3.dsc | 2.4 KiB | 9db9ddc920e889b944af5c99f2144cb0418a538cdda8b40f8d6e310c2c3e398b |
flask_0.12.2.orig.tar.gz | 535.7 KiB | 49f44461237b69ecd901cc7ce66feea0319b9158743dd27a2899962ab214dac1 |
flask_0.12.2-3.debian.tar.xz | 6.9 KiB | 3aec886e428d6857e32f56906716caf2cc1d91c3e61fe3b5cb28ac4bc368d664 |
Available diffs
- diff from 0.12.2-2 to 0.12.2-3 (3.0 KiB)
No changes file available.
Binary packages built by this source
- python-flask: No summary available for python-flask in ubuntu cosmic.
No description available for python-flask in ubuntu cosmic.
- 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: No summary available for python3-flask in ubuntu cosmic.
No description available for python3-flask in ubuntu cosmic.