fuzzyfinder
Fuzzy Finder implemented in Python.
What it is and what it does
Fuzzyfinder is a pure-Python fuzzy matching library that ranks partial string matches from a collection, similar to the fuzzy finders built into Sublime Text and Vim. It takes a search query and a list of candidates, then returns matches ranked by how well they fit the query pattern—characters need not be consecutive. The library supports customization through an accessor function to extract strings from non-string objects, case-sensitive or case-insensitive matching, optional result sorting, and terminal highlighting of matched substrings.
The implementation relies only on Python's standard library, making it lightweight and easy to embed. It's useful for building autocomplete interfaces, command palettes, or search filters where users type partial queries and expect intelligent ranking of results.
Use it for:
- Build autocomplete or search-as-you-type interfaces in CLI tools or web applications.
- Filter and rank command suggestions in a command palette or REPL.
- Implement fuzzy file or symbol search in editor plugins or IDE extensions.
- Rank user-facing search results where exact substring matching is too strict.
- Extract matching items from structured data using a custom accessor function.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Fuzzy finder that matches partial strings from a list and returns ranked results, similar to Sublime Text and Vim's Ctrl-P plugin.
Yes. Fuzzyfinder is a lightweight, dependency-free fuzzy matching library with no known vulnerabilities and a permissive license. It is well-suited for CLI tools, autocomplete features, and search interfaces. The aging maintenance status (481 days since last release) suggests the package is stable but not actively developed; use it when you need straightforward fuzzy matching without ongoing feature development.
Install
fuzzyfinder on PyPI
pip
pip install fuzzyfinderuv
uv add fuzzyfinderpoetry
poetry add fuzzyfinderInstalling fuzzyfinder
Before you install
Installs cleanly with no external dependencies beyond Python standard library. Maintenance status is aging—last release was 481 days ago, though the repository remains active with a recent commit on 2025-08-10.
License in practice
BSD license is permissive, allowing commercial and private use with minimal restrictions.
Quickstart
pip install fuzzyfinder
from fuzzyfinder import fuzzyfinder
suggestions = fuzzyfinder('abc', ['acb', 'defabca', 'abcd', 'aagbec', 'xyz', 'qux'])
print(list(suggestions)) # ['abcd', 'defabca', 'aagbec']
Requires Python 3.10 or later.
Verify before relying
- Performance characteristics on large collections (thousands or millions of strings).
- Whether the aging maintenance status indicates the package is stable or at risk of abandonment.
Package facts
| License | BSD (permissive) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | aging — 481 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 149,786/month — #10,985 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: fuzzyfinder-2.3.0-py3-none-any.whl
Tags
More Utilities packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
charset-normalizerDetects and normalizes text encoding from…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
pluggyPluggy provides a plugin system that lets you…
permissive · top 100 on PyPI
PygmentsPygments is a syntax highlighter that colorizes…
permissive · top 100 on PyPI
sixSix provides utility functions to write Python…
permissive · top 100 on PyPI
pfzyProvides fuzzy string matching with match…
permissive · top 5,000 on PyPI
pyfzfpyfzf wraps the fzf command-line fuzzy finder,…
permissive · top 15,000 on PyPI
thefuzzTheFuzz performs fuzzy string matching using…
permissive · top 5,000 on PyPI
fuzzywuzzyFuzzyWuzzy performs fuzzy string matching using…
copyleft · top 5,000 on PyPI
fuzzysearchFinds approximate substring matches in text or…
permissive · top 15,000 on PyPI
pysimstringProvides fast approximate string matching and…
unclear · top 15,000 on PyPI
pycdcSearches the web for gift ideas and client…
permissive · top 15,000 on PyPI
ahocorasick-rsSearches for multiple substrings in text or…
permissive · top 15,000 on PyPI
scikit-fuzzyscikit-fuzzy provides fuzzy logic algorithms…
unclear · top 15,000 on PyPI
iterfzfProvides a Python interface to fzf, a…
copyleft · top 15,000 on PyPI