Skip to main content

A fast and simple probabilistic bloom filter that supports compression

Project description

# Simple and fast pythonic bloomfilter

From wikipedia: "A Bloom filter is a space-efficient probabilistic data structure, conceived by Burton Howard Bloom in 1970, that is used to test whether an element is a member of a set. False positive matches are possible, but false negatives are not – in other words, a query returns either "possibly in set" or "definitely not in set". Elements can be added to the set, but not removed (though this can be addressed with a "counting" filter); the more elements that are added to the set, the larger the probability of false positives."

This filter supports:

Saving, reloading, compressed bloomfilter file lrzip like
for compression: lz4>lzo>zlib>bz2>lzma
for decompression: lzma>bz2>zlib>lzo>lz4
Stats
Entropy analysis
Internal and external hashing of data.
raw filter merging

Installing Dependencies:

sudo pip install lz4 lzo bz2 zlib sha3 hashlib bitarray

External creating of the bloom filter file:

python mkbloom.py /tmp/filter.blf

Importing:

bf = BloomFilter(filename='/tmp/filter.blf')

Adding data to it:

bf.add('30000')
bf.add('1230213')
bf.add('1')

Adding data and at the same time querying it:

print bf.update('1') # True
print bf.update('1') # True

print bf.update('2') # False
print bf.update('2') # True

Printing stats:

bf.stat()

Or:

bf.info()

Querying data:

print bf.query('1') # True
print bf.query('1230213') # True
print bf.query('12') # False


TODO:

Packaging needed

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastBloomFilter-0.0.2.tar.gz (6.5 kB view details)

Uploaded Source

File details

Details for the file fastBloomFilter-0.0.2.tar.gz.

File metadata

File hashes

Hashes for fastBloomFilter-0.0.2.tar.gz
Algorithm Hash digest
SHA256 ccbd28726436c925713d887c9052e25cc572c5c26aa7e2b2cc698d4525d5eb1e
MD5 436219db058ccf1fb4d68394fb0ef690
BLAKE2b-256 091e90016e740d16df9f0e4c9508c0b735e32f75bfba26a2376754e26cdc2c95

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page