Files
coreyphillips d45279df02 refactor: update naming convention
Updates naming convention to pubkycore throughout project.
Updated bindings accordingly.
Added python bindings.
2024-10-29 18:41:19 -04:00
..
2024-10-29 18:41:19 -04:00
2024-10-29 18:41:19 -04:00

Pubky Mobile Python Bindings

Python bindings for the Pubky Mobile SDK.

Installation

pip install .

Usage

from pubkycore import *

# Generate a new keypair
result = generate_secret_key()
if result[0] == "success":
    print(f"Generated key: {result[1]}")
else:
    print(f"Error: {result[1]}")