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

Current implementation is not testing at all :wink: https://travis-ci.org/jaybaird/python-bloomfilter/jobs/89314785 ``` ============================= test session starts ============================== platform linux2 -- Python 2.6.9 -- py-1.4.26 -- pytest-2.6.4 collected 0 items ```

I've implemented two functions `nstar` and `nstar_intersection` that estimate the number of elements in a Bloom filter as well as in an intersection of two Bloom filters (a separate function...

My project involves multiple nodes maintaining and syncing up bloom filters. To do this efficiently, I need to know which indices get set during an add operation. This PR adds...

Provides an HMAC extension to the existing implementation. The filters now also have the possibility to use keyed hash functions.

Possible to add a tag for version 2.0? Would like to add this project to MacPorts, but they require fetching tagged versions and not directly from head.

I am not particularly sure that the backend algorithm can reliably support this, but it would be nice if the BloomFilter implementation could support the operations of the set primitive....