python-flasgger 0.9.3+dfsg-1 source package in Ubuntu

Changelog

python-flasgger (0.9.3+dfsg-1) unstable; urgency=medium

  * Team upload.
  * Add +dfsg suffix to indicate upstream sources have been repackaged.

 -- Raphaƫl Hertzog <email address hidden>  Tue, 14 Jan 2020 11:46:59 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-flasgger_0.9.3+dfsg-1.dsc 1.9 KiB 03a5af104d4b26cc15ba59b26784536aee3aba02e5217a66712dcfc44cc111c2
python-flasgger_0.9.3+dfsg.orig.tar.xz 1.4 MiB 7070bb31ac4576a34dbf17ebc491e12b2b75ec738e02923a3f4b5df27bd816ff
python-flasgger_0.9.3+dfsg-1.debian.tar.xz 2.9 MiB e27669f07ecdbff6c00ab87f044fc7b8e1177e83c2d2507920f0806efee3f0c7

Available diffs

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.