python-flasgger 0.9.5+dfsg.2-3 source package in Ubuntu

Changelog

python-flasgger (0.9.5+dfsg.2-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Update lintian override info to new format:
    + debian/source/lintian-overrides: line 2, 4
    + debian/python3-flasgger.lintian-overrides: line 5
  * Update standards version to 4.6.1, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Thu, 01 Dec 2022 11:24:40 +0000

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
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-flasgger_0.9.5+dfsg.2-3.dsc 2.1 KiB 4efc5a0aa93bd68f06a915ba963ee7938d1ab06ad1c3cd4e469fe28dd8af9b41
python-flasgger_0.9.5+dfsg.2.orig.tar.xz 1.4 MiB 8966317920a6f893ed914aed2eb9c1aba17b82e9b51ba22949f723ee57e844ad
python-flasgger_0.9.5+dfsg.2-3.debian.tar.xz 2.9 MiB fbed4abb86c2301bd6b5de85b36b890740f3d2d7f12b9d56127a6795b1f25445

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.