1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Source: python-flor
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Michael Fladischer <fladi@debian.org>
Build-Depends:
debhelper (>= 12),
dh-python,
python3-all,
python3-pytest,
python3-setuptools,
Standards-Version: 4.3.0
Homepage: https://github.com/DCSO/flor/
Vcs-Browser: https://salsa.debian.org/python-team/modules/python-flor
Vcs-Git: https://salsa.debian.org/python-team/modules/python-flor.git
Testsuite: autopkgtest-pkg-python
Package: python3-flor
Architecture: all
Depends: ${misc:Depends},
${python3:Depends}
Description: efficient Bloom filter library (Python3 version)
Flor implements a Bloom filter class. A Bloom filter has a capacity (n) and a
false positive probability (p) that gives the probability that a filter filled
to capacity (i.e. with (n) distinct values inserted) will return True for an
element that is not in the filter.
.
This package contains the Python 3 version of the library.
|