Source: flask Section: python Priority: optional Maintainer: Debian Python Team Uploaders: Thomas Goirand , Build-Depends: debhelper-compat (= 13), dh-sequence-python3, dh-sequence-sphinxdoc, flit, pybuild-plugin-pyproject, python-blinker-doc , python-click-doc , python-itsdangerous-doc , python-jinja2-doc , python-sqlalchemy-doc , python-werkzeug-doc , python-wtforms-doc , python3-all, python3-blinker (>= 1.6.2) , python3-click (>= 8.1.3) , python3-doc , python3-itsdangerous (>= 2.1.2) , python3-jinja2 , python3-pallets-sphinx-themes , python3-pytest (>= 7.4) , python3-sphinx , python3-sphinx-issues , python3-sphinx-tabs , python3-werkzeug (>= 3.0.1) , Standards-Version: 4.6.2 Vcs-Git: https://salsa.debian.org/python-team/packages/flask.git Vcs-Browser: https://salsa.debian.org/python-team/packages/flask Homepage: https://github.com/pallets/flask Testsuite: autopkgtest-pkg-python Rules-Requires-Root: no Package: python3-flask Architecture: all Depends: ${misc:Depends}, ${python3:Depends}, Recommends: python3-asgiref, python3-blinker, python3-click (>= 8.0), python3-dotenv, python3-itsdangerous (>= 2.0), python3-pkg-resources, python3-werkzeug (>= 2.2.2), Suggests: python-flask-doc, Description: 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. Package: python-flask-doc Section: doc Architecture: all Depends: ${misc:Depends}, ${sphinxdoc:Depends}, Recommends: python3-flask, Multi-Arch: foreign Description: 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.