Metadata-Version: 2.4
Name: cek-host
Version: 0.1.0
Summary: CEK Python Host kernel — Cap mint/verify, Result packaging (authority only)
Author: bitplorer
License-Expression: MIT
Project-URL: Homepage, https://github.com/bitplorer/cek-python
Project-URL: Law, https://github.com/bitplorer/cek-framework
Project-URL: Rust, https://github.com/bitplorer/cek-runtime
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# cek-host

Python **Host kernel** for CEK: mint/verify Caps, package projected Ops into Results.

```bash
pip install cek-host
# or from monorepo: pip install -e ./cek-host
```

```python
from cek_host import Host

host = Host(secret=b"...")
cap = host.mint("Cart.add", once=True)
result = host.submit(action="Cart.add", args={...}, cap=cap, project_ops=[...])
# result.kind == "ok" | "authority_refusal"; refuse ⇒ ops=[]
```

Peers and browsers **never** mint. See [ORGANIZATION](../docs/ORGANIZATION.md).
