Skip to main content

Documentation Index

Fetch the complete documentation index at: https://verdictweight.dev/llms.txt

Use this file to discover all available pages before exploring further.

Standard install

VERDICT WEIGHT is published on PyPI as verdict-weight.
pip install verdict-weight

Pinning a version

For reproducibility — particularly in regulated or audit-bound environments — pin an exact version:
pip install verdict-weight==X.Y.Z
Replace X.Y.Z with the version you have validated against your deployment. Refer to the PyPI release history for available versions.

Optional extras

Some integrations are gated behind extras to keep the base install lean:
# Install with all optional extras.
pip install "verdict-weight[all]"

# Or pick specific ones.
pip install "verdict-weight[crypto]"
pip install "verdict-weight[benchmarks]"
ExtraPurpose
cryptoHardware-backed signing for the audit chain (Stream 7).
benchmarksReference baselines used in head-to-head comparison.
allAll of the above.

System requirements

RequirementMinimum
Python3.10
OSLinux / macOS / Windows
RAM512 MB
Disk50 MB
NetworkNone at runtime
VERDICT WEIGHT performs no outbound network calls during scoring. It is suitable for air-gapped and classified environments.

Verifying the install

After installing, confirm the package is importable and the version is what you expect:
import verdict_weight
print(verdict_weight.__version__)
For a deeper integrity check, see Verifying your install.