1
0
This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Timmy-time-dashboard/src/infrastructure/nostr/__init__.py
2026-03-24 02:22:39 +00:00

19 lines
557 B
Python

"""Nostr identity infrastructure for Timmy.
Provides keypair management, NIP-01 event signing, WebSocket relay client,
and identity lifecycle management (Kind 0 profile, Kind 31990 capability card).
All components degrade gracefully when the Nostr relay is unavailable.
Usage
-----
from infrastructure.nostr.identity import NostrIdentityManager
manager = NostrIdentityManager()
await manager.announce() # publishes Kind 0 + Kind 31990
"""
from infrastructure.nostr.identity import NostrIdentityManager
__all__ = ["NostrIdentityManager"]