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
|
Source: wapiti-swagger
Section: python
Maintainer: Debian Security Tools <team+pkg-security@tracker.debian.org>
Uploaders: Gianfranco Costamagna <locutusofborg@debian.org>
Build-Depends:
debhelper-compat (= 13),
dh-sequence-python3,
python3,
python3-yaml,
python3-setuptools,
pybuild-plugin-pyproject,
Standards-Version: 4.7.2
Homepage: https://github.com/wapiti-scanner/wapiti_swagger
Vcs-Git: https://salsa.debian.org/pkg-security-team/wapiti-swagger.git
Vcs-Browser: https://salsa.debian.org/pkg-security-team/wapiti-swagger
Package: python3-wapiti-swagger
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}
Recommends: ${python3:Recommends}
Suggests: ${python3:Suggests}
Description: Python library designed to parse Swagger (OpenAPI) specifications.
Python library designed to parse Swagger (OpenAPI) specifications and
extract the necessary information to generate valid HTTP requests.
.
It focuses on providing a clean, programmatic interface for analyzing Swagger
files and creating request templates without relying on external tools for
OpenAPI processing.
.
This library is particularly useful for scenarios where only the request
generation requirements are of interest, such as:
.
- Automated testing and validation of APIs.
- Dynamic request generation for web vulnerability scanners (like Wapiti).
- Custom API tooling.
.
The library is lightweight, relying only on Python's built-in `json` library
and `PyYAML` for file parsing, and it avoids heavy dependencies on larger
OpenAPI frameworks.
|