File: control

package info (click to toggle)
python-bloomfilter 2.0-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 124 kB
  • ctags: 84
  • sloc: python: 551; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 947 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Source: python-bloomfilter
Section: python
Priority: optional
Maintainer: Ulises Vitulli <dererk@debian.org>
Build-Depends: debhelper (>= 7.0.50~), python-all-dev, python (>= 2.5.4-1~),
 dh-python, python-setuptools
Standards-Version: 3.9.5
XS-Python-Version: >= 2.5
Homepage: https://github.com/jaybaird/python-bloomfilter

Package: python-bloomfilter
Architecture: any
Depends: ${python:Depends}, ${misc:Depends}, python-bitarray
Description: Native Python implementation of the Bloom filter probabilistic data structure
 This module includes both the Bloom filter probabilistic data structure,
 together with a Scalable Bloom filter that allows a bloom filter to grow
 without knowing the original set size.
 .
 Bloom filters are great if you understand what amount of bits you need to set
 aside early to store your entire set. Scalable Bloom Filters allow your bloom
 filter bits to grow as a function of false positive probability and size.