matchr-rs 0.1.3

Fast fuzzy string matching — Levenshtein, Jaro-Winkler, and trigram similarity. Usable from Rust and Python.
Documentation
from .matchr import (
    batch_best_match,
    best_match,
    combined_score,
    jaro_winkler,
    levenshtein,
    rank_matches,
    token_set_ratio,
    token_sort_ratio,
    trigram_similarity,
)

__all__ = [
    "batch_best_match",
    "best_match",
    "combined_score",
    "jaro_winkler",
    "levenshtein",
    "rank_matches",
    "token_set_ratio",
    "token_sort_ratio",
    "trigram_similarity",
]