File: control

package info (click to toggle)
python-flasgger 0.9.7.2~dev2%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,684 kB
  • sloc: javascript: 6,384; python: 4,379; makefile: 8; sh: 1
file content (42 lines) | stat: -rw-r--r-- 1,538 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Source: python-flasgger
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Marcos Fouces <marcos@debian.org>
Section: python
Priority: optional
Build-Depends:
 debhelper-compat (=13),
 dh-python,
 python3-all,
 python3-flask,
 python3-jsonschema,
 python3-mistune,
 python3-pytest,
 python3-setuptools,
 python3-yaml,
 libjs-jquery
Standards-Version: 4.6.2
Rules-Requires-Root: no
Testsuite: autopkgtest-pkg-pybuild
Homepage: https://github.com/flasgger/flasgger/
Vcs-Git: https://salsa.debian.org/python-team/packages/python-flasgger.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-flasgger

Package: python3-flasgger
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
 libjs-jquery
Description: 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.