This is a package providing python bindings for poppy, a bloom filter library written in Rust.
The following example assumes you are using virtualenvwrapper
, it is trivial to adapt to make it work with your preferred python virtual environment.
mkvirtualenv poppy
git clone https://github.com/hashlookup/poppy
cd poppy/poppy-py
# install maturin (tool shipped with PyO3)
pip install maturin
# installs current bindings into the current virtual env
maturin develop --release
python -c "import poppy; help(poppy)"
One can install maturin
outside a virtual environment.
For example by doing:
pipx install maturin
Please look at the PyO3 documentation to find the different ways to install maturin.
Once this is done, the dependency can be simply installed with
git clone https://github.com/hashlookup/poppy
cd poppy/poppy-py
# installs current bindings into the current virtual env
maturin develop --release