Skip to main content

Python SDK

Official Python SDK for LanOnasis Memory-as-a-Service.

Installation

pip install LanOnasis

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 available at PyPI