Skip to content

A Bloomfilter implement in pure python for python3.

License

Notifications You must be signed in to change notification settings

coneco/Bloomfilter4py3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.
str in Bloomfilter
return Bloomfilter.test(str)

About

A Bloomfilter implement in pure python for python3.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages