python-flasgger 0.9.3-1 source package in Ubuntu

Changelog

python-flasgger (0.9.3-1) unstable; urgency=low

  [ Marcous Fouces ]
  * Initial Debian release. (Closes: #944430).

  [ Raphaƫl Hertzog ]
  * Drop flasgger/ui2 directory
  * Remove missing sources and dependencies related to flasgger/ui2
  * Add the missing sources for swagger-ui
  * Document the license of swagger-ui separately
  * Document jquery license separately

 -- Marcos Fouces <email address hidden>  Wed, 27 Nov 2019 16:12:40 +0100

Upload details

Uploaded by:
Debian Python Modules Team
Uploaded to:
Sid
Original maintainer:
Debian Python Modules Team
Architectures:
all
Section:
misc
Urgency:
Low 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-1.dsc 1.8 KiB 49a89d526506e2a546d2762a642221737e665fcc859bc4ec3a2ab53403fc8dd6
python-flasgger_0.9.3.orig.tar.xz 1.4 MiB 7070bb31ac4576a34dbf17ebc491e12b2b75ec738e02923a3f4b5df27bd816ff
python-flasgger_0.9.3-1.debian.tar.xz 2.9 MiB 55587b4b443319525cac1442babb5c548c509b6ebb9034b77c085332506a1eb5

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.