10 lines
282 B
Python
10 lines
282 B
Python
#!/usr/bin/env python3
|
|
"""Test nostr-sdk installation and generate keypairs for all agents."""
|
|
from nostr_sdk import Keys
|
|
|
|
# Quick test
|
|
k = Keys.generate()
|
|
print("npub:", k.public_key().to_bech32())
|
|
print("nsec:", k.secret_key().to_bech32()[:20] + "...")
|
|
print("nostr-sdk working")
|