flask 3.0.2-1ubuntu1 source package in Ubuntu

Changelog

flask (3.0.2-1ubuntu1) noble; urgency=medium

  * Merge with Debian; remaining changes:
    - d/control: Demote python3-dotenv to Suggests; this is
      is an optional dependency not in Ubuntu main.
    - fakesync due to different orig tarball

 -- Gianfranco Costamagna <email address hidden>  Tue, 13 Feb 2024 09:28:03 +0100

Upload details

Uploaded by:
Gianfranco Costamagna
Uploaded to:
Noble
Original maintainer:
Debian Python Team
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release main python
Noble release main python

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
flask_3.0.2.orig.tar.gz 659.4 KiB 822c03f4b799204250a7ee84b1eddc40665395333973dfb9deebfe425fefcb7d
flask_3.0.2-1ubuntu1.debian.tar.xz 9.5 KiB 2f24a8ae1decea19347cefc46e19de4941ae42cca8fbb17b805f673d036274ef
flask_3.0.2-1ubuntu1.dsc 2.7 KiB b69efd9fe264a64afb063337aa1a0f9df359b5a392d20ce4927b78474163f75d

View changes file

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.