AGLedger SDK — Accountability and audit infrastructure for agentic systems.
Project description
AGLedger Python SDK
Accountability and audit infrastructure for agentic systems. Self-hosted.
Install
pip install agledger
Quick Start
import os
from agledger import AgledgerClient
client = AgledgerClient(
api_key=os.environ["AGLEDGER_API_KEY"],
base_url=os.environ["AGLEDGER_EXTERNAL_URL"], # your AGLedger instance URL
)
# Create a mandate
mandate = client.mandates.create(
enterprise_id="ent_123",
contract_type="ACH-PROC-v1",
contract_version="1",
platform="internal",
criteria={"item": "widgets", "max_quantity": 100},
)
# Activate it
client.mandates.transition(mandate.id, "activate")
# Submit a receipt
receipt = client.receipts.submit(mandate.id, evidence={"quantity": 95, "vendor": "acme"})
# Verify
result = client.verification.verify(mandate.id)
Configuration
client = AgledgerClient(
api_key="ach_ent_...", # or set AGLEDGER_API_KEY env var
base_url="https://agledger.internal.example.com", # your instance URL
max_retries=2, # default: 2
timeout=30.0, # default: 30s
)
Async Support
from agledger import AsyncAgledgerClient
async with AsyncAgledgerClient() as client:
mandate = await client.mandates.get("mnd-123")
Resources
23 resource sub-clients: mandates, receipts, verification, disputes, webhooks, reputation, events, schemas, dashboard, compliance, registration, health, admin, a2a, capabilities, notarize, enterprises, projects, proxy, federation, federation_admin, agents, references.
Licensing
AGLedger is free for single-node deployments (Docker Compose with bundled database). An Enterprise License is required for external database connections, federation, and multi-node deployments.
Full details: agledger.ai/pricing | License Agreement
SDK License
Proprietary. Copyright (c) 2026 AGLedger LLC. All rights reserved.
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 Distribution
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 agledger-0.5.0.tar.gz.
File metadata
- Download URL: agledger-0.5.0.tar.gz
- Upload date:
- Size: 46.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a4fc64f642f6d6c72e44d78e340a454b56f7ca8bb915bb095712f9746a69266
|
|
| MD5 |
9be8ec2086b8307bc6b388ebb53c680b
|
|
| BLAKE2b-256 |
caf74154e625181d78e8a7d40f057326c62e2a8b1ec079dbd11356bf2c77604d
|
File details
Details for the file agledger-0.5.0-py3-none-any.whl.
File metadata
- Download URL: agledger-0.5.0-py3-none-any.whl
- Upload date:
- Size: 48.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cca0edba20a19e81055467f60d598ae2f9563214ea78a215f947c4e8c09d366e
|
|
| MD5 |
4d7bcad5854eeeac11e9241b55419eed
|
|
| BLAKE2b-256 |
af6bc9278801e6a5194938df632e91f3ac34fdf4486b1999a5eeaaff03e8b1ed
|