Python bindings for libmdbx.
Try it with
pip install libmdbx
Contributions and feedbacks are highly welcome.
A quick sample to read all values from the default database:
with Env(...) as env:
with env.ro_transaction() as txn:
with txn.cursor() as cur:
for k, v in cur.iter():
...
Clone the repo
git clone https://github.com/wtdcode/mdbx-py
git submodule update --init --recursive
Install via poetry
poetry install
That's it!
Forked from libmdbx