awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 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·3 vuesrapidfuzz.github.io/RapidFuzz↗

Rapidfuzz

Il s'agit d'une bibliothèque Python de fuzzy string matching utilisée pour calculer la similarité entre chaînes et les distances d'édition. Elle sert de collection d'algorithmes de distance de chaîne, d'outil d'alignement de séquences et de moteur de recherche de chaîne approximative pour mesurer la similarité textuelle.

La bibliothèque fournit un large éventail de métriques pour quantifier la proximité des chaînes, incluant les distances de Levenshtein, Jaro-Winkler, Hamming et Damerau-Levenshtein. Elle prend en charge l'analyse de similarité via des calculs de plus longue sous-séquence commune, des comparaisons basées sur des jetons et une pondération pour tenir compte des différences de contenu et d'ordre des mots.

Au-delà des métriques de distance de base, le projet couvre la recherche et l'indexation pour extraire les meilleures correspondances à partir de collections et effectuer des calculs de distance par paires. Il inclut des outils pour l'analyse de différence de séquences qui génèrent des opérations d'édition pour transformer une chaîne en une autre, ainsi que des utilitaires de prétraitement de texte pour le nettoyage et la standardisation des chaînes.

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++.

Historique des stars

Graphique de l'historique des stars pour maxbachmann/rapidfuzzGraphique de l'historique des stars pour maxbachmann/rapidfuzz

Recherche par IA

Explorez plus de dépôts awesome

Décrivez vos besoins en langage naturel — l'IA classe des milliers de projets open source sélectionnés par pertinence.

Start searching with AI

Questions fréquentes

Que fait maxbachmann/rapidfuzz ?

Il s'agit d'une bibliothèque Python de fuzzy string matching utilisée pour calculer la similarité entre chaînes et les distances d'édition. Elle sert de collection d'algorithmes de distance de chaîne, d'outil d'alignement de séquences et de moteur de recherche de chaîne approximative pour mesurer la similarité textuelle.

Quelles sont les fonctionnalités principales de maxbachmann/rapidfuzz ?

Les fonctionnalités principales de maxbachmann/rapidfuzz sont : Fuzzy Matching, C++ Implementations, Fuzzy String Matching Libraries, Edit Distance Calculators, Hamming Distance Calculators, String Similarity Metrics, Python-C++ Bindings, String Distance Algorithms.

Quelles sont les alternatives open-source à maxbachmann/rapidfuzz ?

Les alternatives open-source à maxbachmann/rapidfuzz incluent : 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…

Alternatives open source à Rapidfuzz

Projets open source similaires, classés selon le nombre de fonctionnalités partagées avec Rapidfuzz.
  • rapidfuzz/rapidfuzzAvatar de rapidfuzz

    rapidfuzz/RapidFuzz

    3,731Voir sur 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
    Voir sur GitHub↗3,731
  • seatgeek/fuzzywuzzyAvatar de seatgeek

    seatgeek/fuzzywuzzy

    9,258Voir sur 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
    Voir sur GitHub↗9,258
  • google/diff-match-patchAvatar de google

    google/diff-match-patch

    8,065Voir sur 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
    Voir sur GitHub↗8,065
  • kodecocodes/swift-algorithm-clubAvatar de kodecocodes

    kodecocodes/swift-algorithm-club

    29,099Voir sur 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
    Voir sur GitHub↗29,099
  • Voir les 30 alternatives à Rapidfuzz→