Installation

It is possible to install openleveldb with poetry:

poetry add openleveldb

or with pip:

pip install openleveldb

Verify installation

Verify that the installation has been successful and that plyvel correctly installed leveldb, if it is not already installed on the system:

python -c 'import openleveldb'

Verify that openleveldb using the tests

git clone git@github.com:lucmos/openleveldb.git
cd openleveldb
poetry run pytest .