⚡ Cloudflare Python Worker 📦 pip install attestplane
Checking status...

attestplane

Live demo of the attestplane package in Pyodide. Create EventDrafts and compute cryptographic hashes.

EventDraft Hash Calculator hash_event(event)

Library Usage

Create EventDraft

from attestplane import EventDraft

draft = EventDraft(
    event_type="EVAL_EVENT",
    actor="alice@example.com",
    payload={"score_pct": 95}
)

Hash Event

from attestplane import hash_event

event_hash = hash_event(draft)
print(event_hash.hex())