Python quickstart
Install from the monorepo and run against a local API.
pip install -e "NADIR_SDK/python"
export NADIR_API_KEY=nadir_dev_local_key
from nadir_sdk import NadirClient
client = NadirClient(base_url="http://127.0.0.1:8000")
print(client.fleet_health_summary()["critical_count"])
bundle = client.evidence_bundle("EVB-20260603-B7F2")
client.close()