Is this abandonware?
Is this project abandonware? Based on #9 it would seem so...
Looks like this fork is trying to reanimate this module
@daemontools get the latest one from https://pypi.python.org/pypi/pybloom_live/ .
@ joseph-fox can you save the filter bits and reload them from a file?
@indera It seems to me pickle is what you are looking for if the data security is not your primary concern.
@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 Yes, these are totally working but please use ScalableBloomFilter.