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

Scalable Bloom Filter implemented in Python

Results 26 python-bloomfilter issues
Sort by recently updated
recently updated
newest added

first thanks for your bloom filter ,it's easy to use. and i'm interested in "make_hashfuncs", can you provide some article to tell me how to design the method? why num_bits...

Once you deserialize a serialized `BloomFilter` object the `self.bitarray` length might differ because of added padding. https://github.com/jaybaird/python-bloomfilter/blob/master/pybloom/pybloom.py#L271 Here difference in length due to the trailing bits is ignored. No such...

This pull request adds `union` and `copy` for ScalableBloomFilter which is required in several applications.

After unioning two bloom filters, the count of the resulting bloom filter was set to 0. I updated the union method to update the self.count of the result as well.

Is there somehow I can store my full bloom filter to a file and load it again later on to check for new values?

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

Can you submit 2.0 to PyPI ? seems like 1.1 is the latest: https://pypi.python.org/pypi/pybloom

I tested on Linux and they work fine. But on windows the bitarray library throws an exception: ``` ====================================================================== ERROR: test_serialization (pybloom.tests.Serialization) ---------------------------------------------------------------------- Traceback (most recent call last): File "c:\users\taylor\src\python-bloomfilter\pybloom\tests.py",...

Hi, I'm wondering why you are using ratio in ScalableBloomFilter, and it seems that the first filter has different error_as from the rest filters. Because in the code, the first...