Metadata-Version: 2.4
Name: agledger
Version: 0.1.0
Summary: AGLedger SDK — Accountability and audit infrastructure for agentic systems.
Author-email: AGLedger LLC <support@agledger.ai>
License-Expression: LicenseRef-Proprietary
License-File: LICENSE
Keywords: accountability,agents,agledger,audit,mandates
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.9
Requires-Dist: httpx<1,>=0.25.0
Requires-Dist: pydantic<3,>=2.0.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.24; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: respx>=0.22; extra == 'dev'
Description-Content-Type: text/markdown

# AGLedger Python SDK

Accountability and audit infrastructure for agentic systems.

```python
from agledger import AgledgerClient

client = AgledgerClient(api_key="ach_ent_...")
mandate = client.mandates.create(
    enterpriseId="ent_123",
    contractType="ACH-PROC-v1",
    contractVersion="1",
    platform="internal",
    criteria={"item": "widgets", "maxQuantity": 100},
)
```

See [agledger.ai](https://agledger.ai) for documentation.
