Standalone Python client library for Black Duck BDSCA and BDBA APIs.
Project description
Black Duck SCA API client
Standalone Python client library for Black Duck BDSCA and BDBA APIs.
This package provides a typed, composable API client for common Black Duck BDSCA workflows such as:
- project and version management
- BOM and component queries
- vulnerability and policy queries
- report generation and download
- scan orchestration (binary, container, SBOM, BDIO)
- users, groups, system, jobs, and custom fields
Requirements
- Python 3.13+
Installation
Install from local source:
pip install .
uv pip install .
Or install in editable mode for development:
pip install --editable .
uv sync
Quick Start
1) Initialize client and authenticate
from blackduck.bdsca.client import BDScaClient
HOST = "https://your-blackduck.example.com"
TOKEN = "your-api-token"
client = BDScaClient.from_params(
host=HOST,
token=TOKEN,
max_requests_per_sec=10,
)
# Exchange token for bearer auth and store it in session headers
client.authenticate()
## Call a few common endpoints
# Current user
me = client.users.get_current_user()
print("Current user:", me.user_name)
# System status
health = client.system.liveness_check()
print("Liveness:", health.status)
# List projects (first page)
projects = client.projects.list_projects(limit=10)
for p in projects.items:
print(p.project_id, p.name)
Client Structure
The top-level BDScaClient exposes domain clients as attributes:
- client.projects
- client.projectgroups
- client.codelocations
- client.components
- client.customfields
- client.jobs
- client.licenses
- client.policies
- client.reports
- client.scans
- client.snippets
- client.system
- client.users
- client.usergroups
- client.vulnerabilities
Error Handling
Client methods usually raise requests exceptions via response.raise_for_status() on non-2xx responses.
Typical pattern:
import requests
try:
client.authenticate()
projects = client.projects.list_projects(limit=5)
except requests.HTTPError as exc:
print("HTTP error:", exc)
except requests.RequestException as exc:
print("Request error:", exc)
Development
Common tasks with just:
just setup-dev
just lint
just test
Notes
- Host values with or without scheme are supported; the transport normalizes the host URL.
- Authentication is explicit: call client.authenticate() before making API calls.
- The transport includes resilient adapter wiring for retries, throttling, and reauthentication callback support.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file blackduck_sca_api_client-0.3.1-cp313-none-any.whl.
File metadata
- Download URL: blackduck_sca_api_client-0.3.1-cp313-none-any.whl
- Upload date:
- Size: 191.1 kB
- Tags: CPython 3.13
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a9ebc9a2c806d40114b23d4ae277b6bfe3ced07ee65fca0733dce8de4d681c2
|
|
| MD5 |
4af516bf6a309425052eb3ab1c1f2a3e
|
|
| BLAKE2b-256 |
d9cedc9e65e42d314db36cc31fc2fa175ccbd63fb2ba9937659e4ad9f78e2559
|