GoooIce / pybloomfiltermmap3

Fast Python Bloom Filter using Mmap

Home Page:https://github.com/prashnts/pybloomfiltermmap3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pybloomfiltermmap3

pybloomfiltermmap3 is a Python 3 compatible fork of pybloomfiltermmap by @axiak.

The goal of pybloomfiltermmap3 is simple: to provide a fast, simple, scalable, correct library for Bloom Filters in Python.

Build Status PyPI PyPI PyPI

Quickstart

After you install, the interface to use is a cross between a file interface and a ste interface. As an example:

    >>> import pybloomfilter
    >>> fruit = pybloomfilter.BloomFilter(100000, 0.1, '/tmp/words.bloom')
    >>> fruit.update(('apple', 'pear', 'orange', 'apple'))
    >>> len(fruit)
    3
    >>> 'mike' in fruit
    False
    >>> 'apple' in fruit
    True

To create an in-memory filter, ditch the file location.

    >>> cakes = pybloomfilter.BloomFilter(10000, 0.1)

Caveates: It is currently not possible to persist this filter later.

Docs

Follow the official docs for pybloomfiltermmap. http://axiak.github.io/pybloomfiltermmap/

Install

Please have Cython installed. Please note that this version is specifically meant for Python 3. In case you need Python 2, please see https://github.com/axiak/pybloomfiltermmap.

To install:

    $ pip install cython
    $ pip install pybloomfiltermmap3

and you should be set.

License

See the LICENSE file. It's under the MIT License.

About

Fast Python Bloom Filter using Mmap

https://github.com/prashnts/pybloomfiltermmap3

License:MIT License


Languages

Language:C 59.5%Language:Python 39.9%Language:Makefile 0.6%