Rapid fuzzy string matching in Python using various string metrics
Go to file
Max Bachmann eee513f2c5 move python2/3 specifics out of implementation 2020-11-08 21:41:51 +01:00
.github/workflows add wheels for Python2.7 on Windows (#47) 2020-10-22 05:54:39 +02:00
bench update rapidfuzz-cpp and add support for tuple scores in processors 2020-08-14 11:45:07 +02:00
docs fix documentation of process.extractOne 2020-10-26 18:46:56 +01:00
extern/variant boost is no longer required for rapidfuzz-cpp 2020-10-09 09:40:26 +02:00
src move python2/3 specifics out of implementation 2020-11-08 21:41:51 +01:00
tests add python 2.7 support 2020-08-22 23:06:05 +02:00
.gitattributes replace difflib 2020-09-29 00:18:24 +02:00
.gitignore add benchmarks to ci 2020-06-01 14:32:26 +02:00
.gitmodules move cpp into submodule 2020-04-13 08:50:35 +02:00
Benchmarks.md Fix link to benchmark 2020-10-30 08:41:29 +01:00
LICENSE add license preamble 2020-04-10 15:06:57 +02:00
MANIFEST.in replace difflib 2020-09-29 00:18:24 +02:00
README.md update installation guide 2020-09-30 13:25:31 +02:00
VERSION fix documentation of process.extractOne 2020-10-26 18:46:56 +01:00
mkdocs.yml simplify workflow 2020-06-03 09:44:57 +02:00
setup.py always use c++ implemenation of default_process 2020-11-08 21:04:19 +01:00

README.md

RapidFuzz

Rapid fuzzy string matching in Python and C++ using the Levenshtein Distance

Continous Integration PyPI package version Conda Version Python versions
Gitter chat Documentation GitHub license

DescriptionInstallationUsageLicense


Description

RapidFuzz is a fast string matching library for Python and C++, which is using the string similarity calculations from FuzzyWuzzy. However there are two aspects that set RapidFuzz apart from FuzzyWuzzy:

  1. It is MIT licensed so it can be used whichever License you might want to choose for your project, while you're forced to adopt the GPL license when using FuzzyWuzzy
  2. It is mostly written in C++ and on top of this comes with a lot of Algorithmic improvements to make string matching even faster, while still providing the same results. More details on these performance improvements in form of benchmarks can be found here

Requirements

Installation

There are several ways to install RapidFuzz, the recommended methods are to either use pip(the Python package manager) or conda (an open-source, cross-platform, package manager)

with pip

RapidFuzz can be installed with pip the following way:

pip install rapidfuzz

There are pre-built binaries (wheels) of RapidFuzz for MacOS (10.9 and later), Linux x86_64 and Windows. Wheels for armv6l (Raspberry Pi Zero) and armv7l (Raspberry Pi) are available on piwheels.

✖️   failure "ImportError: DLL load failed"

If you run into this error on Windows the reason is most likely, that the Visual C++ 2019 redistributable is not installed, which is required to find C++ Libraries (The C++ 2019 version includes the 2015, 2017 and 2019 version).

with conda

RapidFuzz can be installed with conda:

conda install -c conda-forge rapidfuzz

from git

RapidFuzz can be installed directly from the source distribution by cloning the repository. This requires a C++14 capable compiler.

git clone https://github.com/maxbachmann/rapidfuzz.git
cd rapidfuzz
pip install .

Usage

> from rapidfuzz import fuzz
> from rapidfuzz import process

Simple Ratio

> fuzz.ratio("this is a test", "this is a test!")
96.55171966552734

Partial Ratio

> fuzz.partial_ratio("this is a test", "this is a test!")
100.0

Token Sort Ratio

> fuzz.ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear")
90.90908813476562
> fuzz.token_sort_ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear")
100.0

Token Set Ratio

> fuzz.token_sort_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear")
83.8709716796875
> fuzz.token_set_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear")
100.0

Process

> choices = ["Atlanta Falcons", "New York Jets", "New York Giants", "Dallas Cowboys"]
> process.extract("new york jets", choices, limit=2)
[('new york jets', 100), ('new york giants', 78.57142639160156)]
> process.extractOne("cowboys", choices)
("dallas cowboys", 90)

License

RapidFuzz is licensed under the MIT license since I believe that everyone should be able to use it without being forced to adopt the GPL license. Thats why the library is based on an older version of fuzzywuzzy that was MIT licensed as well. This old version of fuzzywuzzy can be found here.