You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add Python SDK to For Developers section on nostrkey.com
Replace Development section with combined For Developers section
featuring the nostrkey Python SDK (pip install nostrkey) for OpenClaw
AI entities, plus the existing build-from-source instructions.
Add Python SDK to Related Repositories in README.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|[nostrkey.app.OC-python.src](https://github.com/HumanjavaEnterprises/nostrkey.app.OC-python.src)| Python SDK for OpenClaw AI entities | v0.1.0 ([PyPI](https://pypi.org/project/nostrkey/)) |
141
142
142
143
Mobile apps use dual-WebView architectures (background + UI) with platform-specific bridges (`AndroidBridge.kt` / `IOSBridge.swift`) to translate Chrome extension APIs into native functionality.
<li><strong>NIP-78</strong> — App-specific data (vault storage)</li>
421
-
</ul>
422
-
</section>
411
+
<h2>For Developers</h2>
423
412
424
-
<section>
425
-
<h2>Development</h2>
413
+
<h3>Python SDK — NostrKey for AI Entities</h3>
414
+
<p>Give your AI its own cryptographic identity. The <code>nostrkey</code> Python package lets OpenClaw bots generate keypairs, sign events, encrypt data, and connect to Nostr relays.</p>
415
+
<pre><code>pip install nostrkey</code></pre>
416
+
<pre><code>from nostrkey import Identity
417
+
418
+
# Create a new AI identity
419
+
bot = Identity.generate()
420
+
print(f"npub: {bot.npub}")
421
+
422
+
# Sign a Nostr event
423
+
event = bot.sign_event(kind=1, content="Hello from an OpenClaw bot!")
0 commit comments