Skip to main content

A simple high-level API and CLI for BM25.

Project description

BM25

The easiest way to add powerful search to your Python projects or command line.

💻 GitHub 📦 PyPI 🏠 Homepage

BM25 is a famous algorithm used by search engines (like Elasticsearch) to find the most relevant documents for a given search query. It works by matching keywords and scoring documents based on how often those words appear.

This package provides a dead-simple, beginner-friendly way to use BM25 in Python. Under the hood, it is powered by bm25s, an ultra-fast, highly optimized library. By installing BM25, you get all the performance benefits of bm25s (including speedups and stemming) with a streamlined, 1-line API and a beautiful command-line interface.

🛠️ Installation

Get started in seconds with pip:

pip install BM25

This automatically installs the optimized bm25s backend, along with necessary dependencies for better search quality (PyStemmer) and a colorful terminal experience (rich).

🐍 Python API: 1-Line Search

If you want to quickly build a search engine over a local file or a list of texts, the BM25 module makes it incredibly easy.

import BM25

# 1. Load your documents (supports .csv, .json, .jsonl, .txt)
# For csv/jsonl, you can specify which column/key holds the text
corpus = BM25.load("documents.csv", document_column="text")

# 2. Build the search index
retriever = BM25.index(corpus)

# 3. Search!
queries = ["how to learn python", "best search algorithms"]
results = retriever.search(queries, k=5) # Get top 5 results

# Print the top results for the first query
for result in results[0]:
    print(f"Score: {result['score']:.2f} | Document: {result['document']}")

The load function handles reading your files, while index automatically takes care of text processing (tokenization, stemming) and creating the searchable index.

💻 Command-Line Interface (CLI)

Don't want to write code? The BM25 package comes with a built-in terminal app for instant indexing and searching.

Step 1: Index your documents

Turn any text, CSV, or JSON file into a search index.

# Index a simple text file (one document per line)
bm25 index documents.txt -o my_index

# Index a CSV file using a specific column for the text
bm25 index documents.csv -o my_index -c text

Step 2: Search

Query your newly created index directly from the terminal.

# Basic search (returns top 10 results)
bm25 search -i my_index "what is machine learning?"

# Return more results and save them to a file
bm25 search -i my_index "your query here" -k 20 -s results.json

🌟 Pro-tip: The User Directory

You can save indices to a central user directory (~/.bm25s/indices/) so you can search them from anywhere on your computer without remembering file paths.

# Save to the central directory using the -u flag
bm25 index documents.csv -u -o my_docs

# Search interactively! Just type this, and a menu will let you pick your index:
bm25 search -u "what is AI?"

🚀 Going Further

The BM25 package is designed to be simple and get out of your way. But if you find yourself needing more advanced features—like saving/loading models, integrating with Hugging Face, tweaking the math behind the algorithm, or handling massive millions-of-documents datasets—you already have the tools!

You can drop down to the underlying bm25s library anytime. Check out the bm25s documentation for full details on advanced usage.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bm25-0.3.8rc1.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bm25-0.3.8rc1-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file bm25-0.3.8rc1.tar.gz.

File metadata

  • Download URL: bm25-0.3.8rc1.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for bm25-0.3.8rc1.tar.gz
Algorithm Hash digest
SHA256 19faf5e30710dc09cc45a17e1952ff51395cd0921ba634c772358957dfdacb57
MD5 1e2b7582db83e65ff5a3521b784fb138
BLAKE2b-256 4e002ea57c19dbf062f09583fbb51e6802578cc4ae0d4e1d9d3b5525173f0b53

See more details on using hashes here.

Provenance

The following attestation bundles were made for bm25-0.3.8rc1.tar.gz:

Publisher: publish-python.yaml on xhluca/bm25s

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bm25-0.3.8rc1-py3-none-any.whl.

File metadata

  • Download URL: bm25-0.3.8rc1-py3-none-any.whl
  • Upload date:
  • Size: 6.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for bm25-0.3.8rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 a0dcf7b3dc002eed81caaa4612daf8f40d44f2223ba451294c1615391f631292
MD5 c203ca4a87188ee34ec00b4285cc51bf
BLAKE2b-256 67454f6f2dcc217e44d9749b6983b34d94c4339fbc2e7f5e5ab011f7aeddc48e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bm25-0.3.8rc1-py3-none-any.whl:

Publisher: publish-python.yaml on xhluca/bm25s

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page