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

Changelog

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

  * Set Depends and Build-Depends from pyhton3-mistune to
    python3-mistune0. (Closes: #1003568).
  * Remove ununsed Lintian overrides.
  * Fix target for Lintian override in source package.
  * Bump to Standards-Version 4.6.0 (no changes required).
  * Update copyright years.

 -- Marcos Fouces <email address hidden>  Sat, 07 May 2022 14:27:28 +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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

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

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.