awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
maxbachmann avatar

maxbachmann/rapidfuzz

0
View on GitHub↗
3,958 stars·157 forks·Python·MIT·18 viewsrapidfuzz.github.io/RapidFuzz↗

Rapidfuzz

This is a Python fuzzy string matching library used for calculating string similarity and edit distances. It serves as a collection of string distance algorithms, a sequence alignment tool, and an approximate string search engine to measure text similarity.

The library provides a wide array of metrics to quantify string closeness, including Levenshtein, Jaro-Winkler, Hamming, and Damerau-Levenshtein distances. It supports similarity analysis through longest common subsequence calculations, token-based comparisons, and weighted scoring to account for differences in content and word order.

Beyond basic distance metrics, the project covers search and indexing for extracting best matches from collections and performing pairwise distance computations. It includes tools for sequence difference analysis that generate edit operations to transform one string into another, as well as text preprocessing utilities for string cleansing and standardization.

Features

  • Fuzzy Matching - Provides comprehensive algorithms for fuzzy string matching to find similar strings despite typos or variations.
  • C++ Implementations - Implements core string metric algorithms in C++ to ensure high performance and low-level memory control.
  • Fuzzy String Matching Libraries - Acts as a high-performance Python library for calculating string similarity and edit distances.
  • Edit Distance Calculators - Calculates the minimum number of insertions and deletions needed to transform one sequence into another.
  • Hamming Distance Calculators - Measures the number of positions where two equal-length strings differ to determine the required substitutions.
  • String Similarity Metrics - Provides a wide range of string similarity metrics including Levenshtein, Hamming, and Jaro-Winkler distances.
  • Python-C++ Bindings - Exposes native C++ high-performance functions to Python via C-API bindings.
  • Edit Distance Calculators - Computes the Damerau-Levenshtein distance, including transpositions, to measure the difference between two sequences.
  • String Distance Algorithms - Offers a comprehensive collection of string distance algorithms for measuring text similarity.
  • Approximate String Searching - Implements an approximate search engine to find the most similar entries in a collection using fuzzy scoring.
  • String Standardizers - Provides utilities to standardize text by removing non-alphanumeric characters and trimming whitespace.
  • Text Preprocessing Pipelines - Includes a preprocessing pipeline to clean and standardize strings before calculating similarity.
  • Text Sequence Alignment Tools - Provides a tool for identifying optimal substrings and generating edit operations to transform sequences.
  • Text Sequence Alignments - Identifies specific insertions, deletions, and substitutions needed to transform one string into another.
  • Direct Memory Buffers - Directly manages memory buffers in the native C++ layer to eliminate Python overhead during pairwise comparisons.
  • Edit Operation Opcodes - Represents string differences as operation codes to describe the exact path from source to target.
  • Token-Based Similarity Scoring - Implements token-based normalization to make similarity scoring independent of word order.
  • SIMD Vectorizations - Uses SIMD vectorization to process multiple characters simultaneously, accelerating distance calculations.
  • Longest Common - Computes similarity between two sequences based on their longest shared subsequence using absolute and normalized scores.
  • Bit-Parallel Implementations - Implements high-performance edit distance calculations using bit-parallelism to optimize computational complexity.
  • Sequence Difference Analysis - The library generates a sequence of edit operations or opcodes that describe how to transform one string into another.
  • String Distance Matrices - Provides functionality to compute similarity scores between two collections of strings as a full matrix or matching pairs.
  • Weighted Similarity Measures - Implements the ability to combine multiple ratio algorithms into a single weighted similarity score for more robust text comparison.
  • Customizable Sequence Differs - Identifies the specific sequence of insertions, deletions, and substitutions required to transform one string into another.
  • Edit Operation Sequences - Generates a precise list of insertions and deletions required to transform one sequence into another.
  • LCS-Based Sequence Diffing - Uses the Longest Common Subsequence algorithm to identify the minimum set of changes needed to transform sequences.
  • Best Match Extraction - Retrieves the most similar entries from a string collection, sorted by score or as a top result.
  • Similarity-Based Substring Matching - Searches for the best alignment of a short string within a longer one to score the most similar segment.
  • Text Retrieval - Fast string matching library for Python and C++.

Star history

Star history chart for maxbachmann/rapidfuzzStar history chart for maxbachmann/rapidfuzz

How this analysis was created: This summary and feature list were written by an AI model that read the project's README and public documentation pages. Each feature links to the documentation it came from; stars, license and language come straight from the GitHub API. The model does not read the source code, and the analysis is refreshed when the project is re-analysed. Learn more on our About page.

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Start searching with AI

Open-source alternatives to Rapidfuzz

Similar open-source projects, ranked by how many features they share with Rapidfuzz.
  • rapidfuzz/rapidfuzzrapidfuzz avatar

    rapidfuzz/RapidFuzz

    3,731View on GitHub↗

    RapidFuzz is a C++ accelerated Python library providing high-performance string comparison and similarity calculations. It functions as a fuzzy string matching toolkit used to quantify the difference between text sequences through Levenshtein distance and other edit distance metrics. The library focuses on scalable approximate text matching, enabling the identification and ranking of similar strings within large datasets. It provides specialized utilities for finding the best matches in a collection and generating pairwise similarity matrices. The project covers a broad surface of text proce

    Pythoncpplevenshteinlevenshtein-distance
    View on GitHub↗3,731
  • seatgeek/fuzzywuzzyseatgeek avatar

    seatgeek/fuzzywuzzy

    9,258View on GitHub↗

    Fuzzywuzzy is a Python library and text processing utility designed to calculate similarity scores between strings. It functions as a text similarity scoring engine and an approximate string matching tool used to identify the closest textual matches within a list of candidate strings. The library provides a suite of tools for measuring the degree of similarity between pieces of text, accounting for typos and formatting differences. These capabilities include extracting the best match from a candidate list and performing fuzzy string matching through various scoring methods. The toolset cover

    Python
    View on GitHub↗9,258
  • google/diff-match-patchgoogle avatar

    google/diff-match-patch

    8,065View on GitHub↗

    This is a text diffing and patching library used for computing differences between text blocks, calculating edit distances, and applying patches to synchronize document versions. It includes a fuzzy text matching engine to locate strings by balancing accuracy with location, and a Levenshtein distance calculator to measure the number of character insertions, deletions, and substitutions between two strings. The library features a semantic diff optimizer that refines raw text differences to align with human-readable word and phrase boundaries. It provides utilities for generating and parsing se

    Pythondiffdifferencematch
    View on GitHub↗8,065
  • kodecocodes/swift-algorithm-clubkodecocodes avatar

    kodecocodes/swift-algorithm-club

    29,099View on GitHub↗

    This project is a comprehensive collection of common computer science algorithms and data structures implemented in Swift. It serves as an educational reference and library for studying computational complexity, algorithmic logic, and data structure engineering through practical code examples. The repository provides a wide suite of data structure implementations, including various types of linked lists, heaps, hash tables, and an extensive range of hierarchical trees such as Red-Black, B-Tree, and Splay trees. It also covers diverse sorting and searching techniques, from basic bubble sort to

    Swiftalgorithmsdata-structuresswift
    View on GitHub↗29,099
See all 30 alternatives to Rapidfuzz→

Frequently asked questions

What does maxbachmann/rapidfuzz do?

This is a Python fuzzy string matching library used for calculating string similarity and edit distances. It serves as a collection of string distance algorithms, a sequence alignment tool, and an approximate string search engine to measure text similarity.

What are the main features of maxbachmann/rapidfuzz?

The main features of maxbachmann/rapidfuzz are: Fuzzy Matching, C++ Implementations, Fuzzy String Matching Libraries, Edit Distance Calculators, Hamming Distance Calculators, String Similarity Metrics, Python-C++ Bindings, String Distance Algorithms.

What are some open-source alternatives to maxbachmann/rapidfuzz?

Open-source alternatives to maxbachmann/rapidfuzz include: rapidfuzz/rapidfuzz — RapidFuzz is a C++ accelerated Python library providing high-performance string comparison and similarity… seatgeek/fuzzywuzzy — Fuzzywuzzy is a Python library and text processing utility designed to calculate similarity scores between strings. It… google/diff-match-patch — This is a text diffing and patching library used for computing differences between text blocks, calculating edit… kodecocodes/swift-algorithm-club — This project is a comprehensive collection of common computer science algorithms and data structures implemented in… javve/list.js — list.js is a JavaScript search and sort library used to add real-time filtering, sorting, and pagination to HTML lists… krisk/fuse — Fuse is a JavaScript fuzzy search library and client-side search engine designed to index and query JSON data. It…