Installation

MonaDB ships as a single Python package. There is no server to install and no configuration to write. You can install from PyPi like so:

From PyPI

pip

pip install monadb

uv

uv add monadb

Requirements

Python 3.9+.

Verifying

import monadb

db = monadb.open()

items = db["items"]
items["test"] = {"ok": True}

assert items["test"] == {"ok": True}