This is a package providing python bindings for poppy, a bloom filter library written in Rust.
Installation from git
The following example assumes you are using virtualenvwrapper
, it is trivial to adapt to make it work with your preferred python virtual environment.
With virtual environment
mkvirtualenv poppy
git clone https://github.com/hashlookup/poppy
cd poppy/poppy-py
pip install maturin
maturin develop --release
python -c "import poppy; help(poppy)"
With maturin already installed
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
maturin develop --release