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 monadbRequirements
Python 3.9+.
Verifying
import monadb
db = monadb.()
items =["items"]
["test"] = {"ok": True}
assert["test"] == {"ok": True}