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

Changelog

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

  * Team upload.
  * cherry-pick upstream patch to remove python3-six dependency

 -- Alexandre Detiste <email address hidden>  Fri, 05 Jan 2024 16:26:15 +0100

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
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-flasgger_0.9.7.2~dev2+dfsg-2.dsc 2.2 KiB 39342fa04a45b5f5c9d5d9560ef90afa377028f3a41c5b57856b59df84c1a0a2
python-flasgger_0.9.7.2~dev2+dfsg.orig.tar.xz 1.6 MiB 8fecf63d5e5c34981f2a91f3c4666620ec642d4f5494cc89e348b1db7d0d7297
python-flasgger_0.9.7.2~dev2+dfsg-2.debian.tar.xz 2.9 MiB 2aeb79a301fe042585b40a3154f841cc7a58cc2446dc0a2dec75a9388cbdb0cf

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.