Official Python SDK for VoidNote — zero-knowledge self-destructing notes.
pip install voidnoteimport voidnote
result = voidnote.read("https://voidnote.net/note/abc123...")
print(result.content) # decrypted content
print(result.destroyed) # True if view limit was reachedimport voidnote
result = voidnote.create(
"my secret value",
api_key="vn_...",
max_views=1,
title="Deploy key",
)
print(result.url) # share this link- Python 3.9+
cryptography >= 41.0.0