RapidFuzz is a fast string matching library for Python and C++,
which is using the string similarity calculations from FuzzyWuzzy.

It provides a wide range of fundamental algorithms for
string matching:

Damerau Levenshtein
Hamming
Indel
Jaro
JaroWinkler
Levenshtein
Longest Common Subsequence
Optimal String Alignment (OSA)
Prefix
Postfix

In addition, it provides an API compatible implementation of all
algorithms in thefuzz / fuzzywuzzy, and wraps highly-optimized
implementations written in C++.

A pure python fallback for every algorithm is included for
platforms where the C++ extensions cannot be used.

