mirror of
https://github.com/aljazceru/pubky-core-ffi.git
synced 2025-12-17 06:14:21 +01:00
Updates naming convention to pubkycore throughout project. Updated bindings accordingly. Added python bindings.
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]}")