moolb

Bloom filter for python3 with pluggable hasher backend
git clone git://git.defalsify.org/python-moolb.git
Log | Files | Refs | README | LICENSE

commit b3a16cb3829e0622de4be86b2addf0295d942ef1
parent 41b5b7f80772aeacba4b97d80ca8f5a2dc7f7eaf
Author: nolash <dev@holbrook.no>
Date:   Fri, 30 Oct 2020 22:03:46 +0100

Use serial int as byte

Diffstat:
MCHANGELOG | 2++
Msetup.py | 2+-
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG b/CHANGELOG @@ -1,3 +1,5 @@ +- 0.1.0 + * Use bytes for serial instead of str - 0.0.4 * Make dump return bytestring - 0.0.3 diff --git a/setup.py b/setup.py @@ -6,7 +6,7 @@ f.close() setup( name='moolb', - version='0.0.4', + version='0.1.0', description='Simple bloom filter with pluggable hash backend', author='Louis Holbrook', author_email='dev@holbrook.no',