python-bloomfilter icon indicating copy to clipboard operation
python-bloomfilter copied to clipboard

Is this abandonware?

Open daemontools opened this issue 9 years ago • 6 comments

Is this project abandonware? Based on #9 it would seem so...

daemontools avatar Jun 27 '16 22:06 daemontools

Looks like this fork is trying to reanimate this module

nirizr avatar Jun 30 '16 12:06 nirizr

@daemontools get the latest one from https://pypi.python.org/pypi/pybloom_live/ .

joseph-fox avatar Jun 30 '16 19:06 joseph-fox

@ joseph-fox can you save the filter bits and reload them from a file?

indera avatar Sep 22 '16 03:09 indera

@indera It seems to me pickle is what you are looking for if the data security is not your primary concern.

joseph-fox avatar Sep 22 '16 21:09 joseph-fox

@joseph-fox I was looking for bt.tofile() and BloomFilter.fromfile()

with open('bloom.bits', 'wb') as fw: bf.tofile(fw)

with open('bloom.bits', 'rb') as fr: bf2 = BloomFilter.fromfile(fr)

indera avatar Sep 23 '16 13:09 indera

@indera Yes, these are totally working but please use ScalableBloomFilter.

joseph-fox avatar Sep 24 '16 21:09 joseph-fox