Skip to main content

Python library to interact with DefectDojo - generated from OpenAPI

Project description

defectdojo-api-generated

ci test codecov PyPI pyversions Current version on PyPi Very popular Code style: black

Python library to interact with DefectDojo - generated from OpenAPI definition using https://openapi-generator.tech/

Multiple changes done on top of default openapi-generator:

  • A friendlier Client class
  • Tweak validations to reduce package import time to about 1/3
  • Remove most of pydantic/schema validations due to inconsistencies with actual database schema/requirements (tracked in https://github.com/fopina/defectdojo-api-generated/issues/39)
  • Iterator methods for every list API method to handle pagination automatically
  • A nice CLI exposing all the API methods <3
    • published as defectdojo-cli, a separate package to keep library-only installs free of console-script conflicts

Example

Library

pip install defectdojo-api-generated
    from defectdojo_api_generated import DefectDojo

    # password publicly available in https://github.com/DefectDojo/django-DefectDojo/?tab=readme-ov-file#demo
    dojo = DefectDojo(base_url='https://demo.defectdojo.org/', auth=('admin', PASSWORD))
    for ind, finding in enumerate(dojo.findings_api.list_iterator(title='Stored XSS')):
        if not ind:
            print(f'Total matched findings: {finding.page.count}')
        print(f'- [{finding.result.severity}] {finding.result.title} - {finding.result.description}')
    r = dojo.system_settings_api.list(limit=1)
    print(f'- {r.results[0]}')

Full documentation readthedocs

CLI

asciicast

uv recommended or pipx

uv tool install defectdojo-cli
$ dojo 
Usage: dojo [OPTIONS] COMMAND [ARGS]...

  DefectDojo CLI

Options:
  ...
Commands:
  api     Interact directly with any API/method
  config  Show or edit the current CLI configuration
  status  Quick connectivity check

You can also skip tool install and just run it with:

$ uvx defectdojo-cli
Usage: dojo [OPTIONS] COMMAND [ARGS]...
...

Contributing

Check out CONTRIBUTING.md

API notes

Required properties

DefectDojo's OpenAPI schema and actual database/API validations are inconsistent in some places, so this library assumes all properties as not required skipping client-side validation and delegating those validations to server.

Refer to https://github.com/fopina/defectdojo-api-generated/issues/31 and https://github.com/fopina/defectdojo-api-generated/issues/39 for more details / reasoning.

Server versions

This library is versioned after the OpenAPI schema version (DefectDojo version) it was generated against, eg: when re-generated against DefectDojo 2.57.0 schema, it will be released as 2.57.0

Any changes done to the package (such as packaging metadata or extra schema tweaks), while on the same schema version, will be released as post fixes, eg: 2.57.0.post1

Given the very few validations kept (previous note), there might be no issue using "latest" version of this package against an older DefectDojo. However, if there is any, just install the closest matching version.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

defectdojo_api_generated-2.57.2.tar.gz (415.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

defectdojo_api_generated-2.57.2-py3-none-any.whl (981.6 kB view details)

Uploaded Python 3

File details

Details for the file defectdojo_api_generated-2.57.2.tar.gz.

File metadata

File hashes

Hashes for defectdojo_api_generated-2.57.2.tar.gz
Algorithm Hash digest
SHA256 76e2f7b455ab297375cd48d2647d4faeb9a429b3564644081f9f75cd783c5b13
MD5 ae183a952a09edcad9e88f1ceccdb1bf
BLAKE2b-256 a38c785cb3fd290b038435df1451b7e0c443fa474053e7ecaef710d5285410a9

See more details on using hashes here.

File details

Details for the file defectdojo_api_generated-2.57.2-py3-none-any.whl.

File metadata

File hashes

Hashes for defectdojo_api_generated-2.57.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f4a8a3fa4808ae8c4d6d40810b0bc35ee296629a4948b380f0cfc568e17604d6
MD5 6f99bb48127dcb1f97c7574d73eb611c
BLAKE2b-256 ef6f2fd2940dff1707807fb787dc5496df0decdc1175712e274e01bbe81315d3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page