python-flasgger 0.9.7.2~dev2+dfsg-3 source package in Ubuntu

Changelog

python-flasgger (0.9.7.2~dev2+dfsg-3) unstable; urgency=medium

  * Team upload.
  * Revert to regular "mistune" now that just works,
    "mistune0" is not needed anymore.

 -- Alexandre Detiste <email address hidden>  Sun, 02 Jun 2024 00:27:19 +0200

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-flasgger_0.9.7.2~dev2+dfsg-3.dsc 2.2 KiB a6d27366c6ae154bcf6c6e238174de86fcd5dbad7554995fbfe85134494462bb
python-flasgger_0.9.7.2~dev2+dfsg.orig.tar.xz 1.6 MiB 8fecf63d5e5c34981f2a91f3c4666620ec642d4f5494cc89e348b1db7d0d7297
python-flasgger_0.9.7.2~dev2+dfsg-3.debian.tar.xz 2.9 MiB ebc67c0cc96198b7e899e2bfd26b92f4092ba17052b101acf45e05dbff28e7ea

No changes file available.

Binary packages built by this source

python3-flasgger: Extract swagger specs from your flask project

 Flasgger is a Flask extension to extract OpenAPI-Specification from all
 Flask views registered in your API.
 It also comes with SwaggerUI embedded so you can access
 http://localhost:5000/apidocs and visualize and interact
 with your API resources.
 It also provides validation of the incoming data, using the same specification
 it can validates if the data received as a POST, PUT, PATCH is valid against
 the schema defined using YAML, Python dictionaries or Marshmallow Schemas.
 Flasgger can work with simple function views or MethodViews using docstring
 as specification, or using @swag_from decorator to get specification from
 YAML or dict and also provides SwaggerView which can use
 Marshmallow Schemas as specification.