Ross ROSS = Recommend OSS · open-source software intelligence for agents

jaybaird/python-bloomfilter

Scalable Bloom Filter implemented in Python observed · 2026-08-28

github.com/jaybaird/python-bloomfilter · Python · MIT (permissive) · archived observed · 2026-08-28

Health v2 · maintenance only

10/100

  • Activity 0
  • Release rhythm 35
  • Longevity 100

Flags: no_releases archived

How is this computed?

round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-03. Adoption (stars, forks) is never an input.

  • gap_med: n/a
  • age_days: 6474
  • days_rel: n/a
  • days_push: 1889
  • n_releases_24m: 0

Full methodology

Adoption not part of the score

1618 stars · 321 forks observed · 2026-08-28

What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded

pybloom is a Python module implementing Bloom Filters and Scalable Bloom Filters as a probabilistic set membership data structure. It grows filter capacity automatically based on false positive probability targets, following the Almeida et al. GLOBECOM 2007 paper.

Use cases

  • check if an element is in a large set without storing it all
  • build a scalable bloom filter that grows with the dataset
  • avoid expensive lookups with a probabilistic membership test
  • deduplicate items with a small memory footprint
  • implement a spell checker or cache filter with controlled false positive rate

When to choose

  • you need memory-efficient approximate set membership in pure Python
  • you don't know the final set size in advance and want automatic scaling
  • a small false positive rate is acceptable for your use case

When to avoid

  • you need exact membership answers with zero false positives
  • you need deletion support, which bloom filters don't provide
  • you need a actively maintained or high-performance implementation for production systems

Facets

library · maturity maintenance

caching search-engine data-science databases developer-tools python cross-platform bloom-filter probabilistic-data-structure scalable-bloom-filter algorithms

1 source

Member repositories

RepositoryRoleHealth v2
jaybaird/python-bloomfiltermain10

For agents

markdown · JSON · MCP: product_card(name="jaybaird/python-bloomfilter")

Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem