Skip to main content

A fast and simple probabilistic bloom filter that supports compression

Project description

Libraries.io SourceRank lint_python CodeQL GitHub issues GitHub forks GitHub stars GitHub license

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:

sudo pip install fastbloomfilter

External creating of the bloom filter file:

python mkbloom.py /tmp/filter.blf

Importing:

from fastBloomFilter import bloom
bf = bloom.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
Contributons:
    Are welcome!

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.10.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fastBloomFilter-0.0.10-py3-none-any.whl (20.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: fastBloomFilter-0.0.10.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for fastBloomFilter-0.0.10.tar.gz
Algorithm Hash digest
SHA256 b0e963e6e45ed850cd40fc3ba222e5c3d573f7322af9ca7c4b6bd672dcdcfdfc
MD5 454c394791df672351a58540770476ac
BLAKE2b-256 dc558c9a49ff46934ef80551a3cc9c09caa6a638b52afdfe002cf59f99274d42

See more details on using hashes here.

File details

Details for the file fastBloomFilter-0.0.10-py3-none-any.whl.

File metadata

  • Download URL: fastBloomFilter-0.0.10-py3-none-any.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for fastBloomFilter-0.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 256bde4c8e40b36551401e5c6107ce48b4e3d2b80b9dc51f064316d1c389d728
MD5 8c7e8a8faf47585ad44f03b5df2a02cc
BLAKE2b-256 a223de2a2b4d5b6fc985ff1f227098414ca80b506dcd7db3aa8566c7b034e68f

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