Python SDK
Official Python SDK for LanOnasis Memory-as-a-Service.
Installation
pip install lanonasis
Status: ⏳ Coming Soon (not yet published to PyPI)
Quick Start
from lanonasis import LanOnasisClient
client = LanOnasisClient(api_key="your-api-key")
# Create a memory
memory = client.memories.create(
title="Important Note",
content="This is my memory content",
tags=["work", "project"]
)
Documentation
Full documentation will be available at PyPI once published.