Metadata-Version: 1.1
Name: bloomfilter4py3
Version: 1.1.0
Summary: A Bloomfilter implement in pure python for python3.
Home-page: https://github.com/coneco/Bloomfilter4py3
Author: coNEco
Author-email: coneco@outlook.com
License: MIT
Description: Bloomfilters4py3

        ================

        

        A Bloomfilter implement in pure python for python3.

        

        Package Installation and Usage

        ------------------------------

        

        The package is available on PyPI:

        

            pip install bloomfilter4py3

        

        The library can be imported in the usual way:

        

            import bloomfilter

        

        APIs

        ----

        

        Bloomfilter(nBits, nHashs)

            Return a Bloomfilter object with bucket length of nBits and nHashs hash functions.

        

        Bloomfilter(filepath)

            Return a Bloomfilter object that read from file at filepath.

        

        Bloomfilter.save(filepath)

            Save the filter in file at filepath.

        

        Bloomfilter.add(str)

            Add str to the filter.

        

        Bloomfilter.test(str)

            Return a True if str might in the filter.
Keywords: bloomfilter
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python ModulesLicense :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3 :: Only
