Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

voidnote

Official Python SDK for VoidNote — zero-knowledge self-destructing notes.

Install

pip install voidnote

Usage

Read a note

import voidnote

result = voidnote.read("https://voidnote.net/note/abc123...")
print(result.content)   # decrypted content
print(result.destroyed) # True if view limit was reached

Create a note (requires API key)

import voidnote

result = voidnote.create(
    "my secret value",
    api_key="vn_...",
    max_views=1,
    title="Deploy key",
)
print(result.url)  # share this link

Requirements

  • Python 3.9+
  • cryptography >= 41.0.0

Links

About

Official Python SDK for VoidNote — zero-knowledge self-destructing notes

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages