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

Changelog

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

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.

  [ Ondřej Nový ]
  * d/control: Update Maintainer field with new Debian Python Team
    contact address.
  * d/control: Update Vcs-* fields with new Debian Python Team Salsa
    layout.

  [ Marcos Fouces ]
  * New upstream version 0.9.5+dfsg.2
  * Exclude __pycache__ dirs (contains some files without source code)
    from source tarball. Added suffix "dfsg.2" to orig tarball.
  * Remove useless ".DS_Store" files from binary package.
  * Remove useless Lintian override.
  * Update uploader email to @debian.org
  * Add proper Lintian overrides for binary package.
  * Bump to debhelper-compat level 13.

 -- Marcos Fouces <email address hidden>  Sun, 01 Nov 2020 19:28:05 +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
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

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

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.