Skip to main content

rapid fuzzy string matching

Project description

RapidFuzz

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

Continous Integration PyPI package version Conda Version Python versions
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 a couple of 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 provides many string_metrics like hamming or jaro_winkler, which are not included in FuzzyWuzzy
  3. 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. For detailed benchmarks check the documentation
  4. Fixes multiple bugs in the partial_ratio implementation

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.

:heavy_multiplication_x:   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 --recursive https://github.com/maxbachmann/rapidfuzz.git
cd rapidfuzz
pip install .

Usage

Some simple functions are shown below. A complete documentation of all functions can be found here.

Scorers

Scorers in RapidFuzz can be found in the modules fuzz and string_metric.

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

The process module makes it compare strings to lists of strings. This is generally more performant than using the scorers directly from Python. Here are some examples on the usage of processors in RapidFuzz:

> from rapidfuzz import process, fuzz
> choices = ["Atlanta Falcons", "New York Jets", "New York Giants", "Dallas Cowboys"]
> process.extract("new york jets", choices, scorer=fuzz.WRatio, limit=2)
[('New York Jets', 100, 1), ('New York Giants', 78.57142639160156, 2)]
> process.extractOne("cowboys", choices, scorer=fuzz.WRatio)
("Dallas Cowboys", 90, 3)

The full documentation of processors can be found here

Benchmark

The following benchmark gives a quick performance comparision between RapidFuzz and FuzzyWuzzy. More detailed benchmarks for the string metrics can be found in the documentation. For this simple comparision I generated a list of 10.000 strings with length 10, that is compared to a sample of 100 elements from this list:

words = [
  ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(10))
  for _ in range(10_000)
]
samples = words[::len(words) // 100]

The first benchmark compares the performance of the scorers in FuzzyWuzzy and RapidFuzz when they are used directly from Python in the following way:

for sample in samples:
  for word in words:
    scorer(sample, word)

The following graph shows how many elements are processed per second with each of the scorers. There are big performance differences between the different scorers. However each of the scorers is faster in RapidFuzz

Benchmark Scorer

The second benchmark compares the performance when the scorers are used in combination with extractOne in the following way:

for sample in samples:
  extractOne(sample, word, scorer=scorer)

The following graph shows how many elements are processed per second with each of the scorers. In RapidFuzz the usage of scorers through processors like extractOne is a lot faster than directly using it. Thats why they should be used whenever possible.

Benchmark extractOne

Support the project

If you are using RapidFuzz for your work and feel like giving a bit of your own benefit back to support the project, consider sending us money through GitHub Sponsors or PayPal that we can use to buy us free time for the maintenance of this great library, to fix bugs in the software, review and integrate code contributions, to improve its features and documentation, or to just take a deep breath and have a cup of tea every once in a while. Thank you for your support.

Support the project through GitHub Sponsors or via PayPal:

.

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.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rapidfuzz-2.6.0.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

rapidfuzz-2.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-2.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-2.6.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-2.6.0-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11 Windows x86-64

rapidfuzz-2.6.0-cp311-cp311-win32.whl (1.2 MB view details)

Uploaded CPython 3.11 Windows x86

rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_s390x.whl (2.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_i686.whl (3.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.0-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rapidfuzz-2.6.0-cp311-cp311-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

rapidfuzz-2.6.0-cp311-cp311-macosx_10_9_universal2.whl (4.0 MB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

rapidfuzz-2.6.0-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10 Windows x86-64

rapidfuzz-2.6.0-cp310-cp310-win32.whl (1.2 MB view details)

Uploaded CPython 3.10 Windows x86

rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_s390x.whl (2.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_i686.whl (3.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.0-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rapidfuzz-2.6.0-cp310-cp310-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

rapidfuzz-2.6.0-cp310-cp310-macosx_10_9_universal2.whl (4.0 MB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

rapidfuzz-2.6.0-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-2.6.0-cp39-cp39-win32.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_s390x.whl (2.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_i686.whl (3.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.0-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rapidfuzz-2.6.0-cp39-cp39-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-2.6.0-cp39-cp39-macosx_10_9_universal2.whl (4.0 MB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

rapidfuzz-2.6.0-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-2.6.0-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_s390x.whl (2.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_i686.whl (3.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.0-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rapidfuzz-2.6.0-cp38-cp38-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-2.6.0-cp38-cp38-macosx_10_9_universal2.whl (4.0 MB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

rapidfuzz-2.6.0-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-2.6.0-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_s390x.whl (2.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_i686.whl (3.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.0-cp37-cp37m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-2.6.0-cp36-cp36m-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-2.6.0-cp36-cp36m-win32.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_s390x.whl (2.6 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_i686.whl (3.5 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.0-cp36-cp36m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file rapidfuzz-2.6.0.tar.gz.

File metadata

  • Download URL: rapidfuzz-2.6.0.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.0.tar.gz
Algorithm Hash digest
SHA256 cda1aacaf03cf71cd110a6268c4a9671b5af30ac50fe14ac4d76254241089ee6
MD5 d4e4c6bea2f53c4082c9c24a699d6da8
BLAKE2b-256 7bf5ceef0929aff61069870ec31d8d203bd386d27900f76a4f6fb02f612672ca

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b19a5c70710044d00049280d46176e35bfb974b0652d35676868f2c40513db9f
MD5 253ef1895059516cddc196fae3b5faea
BLAKE2b-256 6d849e7bd806040188823a35ad32841e091e6faa6b5d20f777c3bdc62475943b

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0db553b0531098ec764ee78f05ce460236d47ccb6422f2fa9392833cbfc3a8a9
MD5 d92d7a5ba2f49aef6e64d7e7289065e9
BLAKE2b-256 5edc30677c2e7c027d9c592bc8d053ca8d7009024a01c4a6a340f7ec721c1c4a

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ba635da3888a89fb48e3f11a358694cb1da171644bd534e833b34812f564706
MD5 3584a1186e5eb120aed0205ef07baf1a
BLAKE2b-256 c331b4b23c6ac7d0c55d12be628146917328cfc8eb30d017fced3ffdc3bf162c

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c68e786d8a002e96aceb8a32e54f614f599ca45cbfdb8fc399a3679c09e1eb0a
MD5 89ecae5cfb59d21621f4c078ebb83523
BLAKE2b-256 16e1af9ee0c83e19fc3ca634bf8388def8ed0733997067b2404b1ba447db0f28

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e77294310c89a802cd0a3130a4fbf39cb3c166385435cfc253422527b570df34
MD5 420ca761c749fafa7fc0ef5f4fda2681
BLAKE2b-256 ea4eeb98e0a2bf699add8c955c864e7409dc3003c8cb3dc522f133863b9759ab

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3a3ca4e466fbeb7cea943dafa4303b1418ad5acb4ec470fdb91c68826261694
MD5 bee786d1224730577d5913ce4f687eb0
BLAKE2b-256 9557a5bd6114aab171b155a52a04abddd468274929424c3b8cb4bc524183ead1

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 164467855ae82e46f2c3f19b5955a8739c342d5a3c7e5fcd49ef0abd7de7983b
MD5 fa4ddefcd8b82731b1cc80d7bc41a746
BLAKE2b-256 3d1df8b8be426717364805c767f6b10f7f9d95cbe9b14420bae022f0d7217a58

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c039be5042df423cdd07fc031645f521d7caec366d4ba7bbdd4754a81dd960f1
MD5 76cd238fdc7b7c9e849b522adc93f4b1
BLAKE2b-256 8d7ae698be62d8d7c305b10166feab531f8b7d4ad9ae7640092fad95d285800a

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f681ccfb6f180a9f1522e8b4e28932a3fc5f38d289624e1a5447409493319009
MD5 1ede87d83b502f0360f4c9c1a3620bbe
BLAKE2b-256 0c8df0ed3a5ae68332d7c1cbcf452e51a03822562f7713ad315f84f1298865e5

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ead59236f4f3a3aa9e5e41b1754928b2ff7f53c838d32860fa987ade0640e09
MD5 df1ef4be136d2db8606a8422978b87a3
BLAKE2b-256 a8273db34db3d058af9ecf57c0c61f48b8ae8ce0c8f1575626d6f192639b2795

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7983a8c05b8621b25a72bf6d069ee709299b579b3e5926a597fdeb2ff37b52f2
MD5 c47dd14ddb250185786c64223155af29
BLAKE2b-256 fbd87507d3c6c9cb3888ca84f76638f49b9a476ea1798dd138326d570d7ba1db

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa5bb85a8246a06f85fcc6642a2d610fbefe135ebdf0b63989b741936c03bd20
MD5 a0140222aa8a223191fe4003757c4639
BLAKE2b-256 81212756abbf9871fa478b33f245e69cfafdbfa5f67c3ab87251d74d709eda1c

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bee1aa2bd5bca2cef6491540cb6bd7f0460f59afec5bb49669ca43c0e4aa1a4a
MD5 75086bcfd55a2e271701c8b3b905fd0b
BLAKE2b-256 71d09d448ab8399d11dbd56ce94a0fa26b2d1c3cc0cc0c6cf4421bdabd1749b4

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: rapidfuzz-2.6.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 68fa66f10b3bc6972db76359743f7ba8834a1ddf54a9fdd66e197ccce707bfbc
MD5 c37ea6655963655c1c13be61f1eaf2b2
BLAKE2b-256 9602182ac9024866961c331129a92aebe7db6c07219e2dcfacf7c7f35ca1ddbd

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cc753fa6433336426ac163f28c634f3a5c56c5cd5a8ff2277064be6d7c08e0c9
MD5 be39e184bc6fb07d13a396860beaee09
BLAKE2b-256 cb3f0af14a57df639e4f66bffdc787a76ee5caeff3215b1f33a33a00068068a3

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 246af6467b0b139db794608ecd6a1de42325072a8f33bc9298a00f0bc5199549
MD5 e4e3c8eb2c482812b63083beb67def5b
BLAKE2b-256 70c814dbbeb5d7ca21d33f85358b60fe733cf3a4c989d8fa2bc3e8e361216094

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 957020bd9ce9cdd2ebe4033621508a0ef463a57f6a6eb948ded05370ddd3b0f2
MD5 379348c658cec61ca98dc3c9855dbc94
BLAKE2b-256 5ddbcab4b4d507b1ffadf7aa203c649e937422aba6bd386ac02c07ad3bbfeb9b

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bd2b165119b48d03d711ebdb95badf7d345fdcb0e879c12278ed319f203c7b50
MD5 3d8bb2d07cd592135ba8b74484caea6b
BLAKE2b-256 22f49ec51c80735f041094e92b9e89b090d7a8905ae1d2272a97764b4c4e6d47

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ce634a39e99fae1bec01a1b5c3b39665fb517b036a585553fdfbb816f0184cc0
MD5 14fcf1c2deaa2586d6a6dd57d02da85e
BLAKE2b-256 1a0ff83b5e567c2bd5dbae6fad7a097e6517548aa3b438aac297178bc3934f32

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bab4331ddcb4433001c16a7a85705b08db2881e15ed2f7fa42cd1afaebfc4c57
MD5 8caf828d01241a3838cece24f2ea2be1
BLAKE2b-256 1f715e87742b82d407fcb30860859e8cc9322db2e2b9e5ca0a43ade98dbfe047

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e9fa7b8231c2bce9fb15edf54c249a2632f3bb29d76bb505104d41a2e69283c
MD5 1c7a97fe8dccfd18be7624bd7727f431
BLAKE2b-256 dfea69ebffe78cc92a2b202e7a15dd407e03eab0d0cde7664beb9586c35ceb19

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f9b6f5fd1d58ff7057c99ef3d127b03fad2fe7246c73fa3d673845cc7bd29ae
MD5 ad27b7591e16ab6ad6000dab9545ac5a
BLAKE2b-256 1120e12e6a92f3fcf1f8bf033b4b9844d936e95f5015911b7b2fa8db7548ef12

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c368a101ba32b4f567468f03d3dceeea2b8b46f1a0b52ab83be5357ef7f55b8
MD5 f063e91ee734f1aaef8087b47b82710b
BLAKE2b-256 4e5868d5450fec0682c58ec40e082bff6a80a693523f5d8a14409d145df114fb

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1eff4ac8709b9b289cb1aec4bd3e75aa733c652cfebf8e7d9f9f5eb00d5e1380
MD5 37d170aebb28c80f0c6f163494f8650e
BLAKE2b-256 73bf2e897e77cbe5e13f0986089211888a3fdd51af5f47d2c0e7808921d9a6c2

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5880616d8375031514f1c79cdbf800351d61c3454356acd14eadd4d8b5f79849
MD5 0e33ea00cb876b88422014bf61b7d499
BLAKE2b-256 294cfef974d3ea875206c8f53caf57bee9818330d649529dd4bbdb0db57c983a

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77865b0187aaa1fbb98d75424b1d52f426a15bdbbf4b67d2fa1271a5916454f8
MD5 c084ca2a8eaba906fdaf29110eac7500
BLAKE2b-256 172054dbbef7496f82f79d4af59774cd9a7eb6f5e9bfa70b7d5d3a74538bcc03

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 70ee025d6855fd7cf0ef2ce63a7e6d99f680f31371ef019354b8a91905a7b664
MD5 25b94b85ea5a5088940a1e9d34a2dadf
BLAKE2b-256 f2672e6520d026e4a045a1e6719f2ac4f282178e9ab2df45c5b46c8a91abbd00

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3eea5d9339954f8aa627923bf97f5ad2da97d0335ba11fd6ce2568a61b90a9d5
MD5 06225166f7052e4a5bbbf3526aac6db4
BLAKE2b-256 dc8c2042de86ca734021bb8d1a5c24ee6a341a1379e4a737494a30148bdd98c3

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: rapidfuzz-2.6.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f15f0a45e508f31d993cba6e778271f6ea382998e683ff1ef487b6232b7751ee
MD5 246ea564fd34cd2c1a86c67073ca579e
BLAKE2b-256 137a8ad530aeb4328df858a5007f98be1e49970449dc85f36259a878d8352217

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 afed406236edebb30850f4fc0090b0f06ace54d9275955caf94ee4f7cf4873a4
MD5 d9ff97f43f39adf77d9a0b6dc3ee5e08
BLAKE2b-256 ae4bbbe68c186f2581cfcc34a4897f1933fef77a0ae86ef6d16466fd7701f8e3

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 f86034aef6efc4183880fd52ba2c8ad98d5df7744032f65955ab4ee187257124
MD5 1e1ca40e5ccedaf2c90ffd420098706e
BLAKE2b-256 e27ad27ff74d9e63758584b1381c438cfc2c8e1383ea088dda47fd76c7d882a4

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 865d1ae1bc8a31daa7853482e53fdc10151b42fbc71037249ea121c7eb172707
MD5 e57fe980adf48dfe81e17021a01d8134
BLAKE2b-256 636407a84ef4789a44953648d84aabb46284799a08f5844155e24cfde378c5bf

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 39d391d5a6bc54a4808409c269c4794741f818cee4836a06fd3c0b64b5a8eba6
MD5 00b234b8aaeecb1143b43e4e20c22936
BLAKE2b-256 f17cbf8d3cb4fc21540b36e6adc689f57f40142903f727fc3692ab6ddac1dd37

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 519d377febf9cfc02b848c356809ba64e2c5cee35389646680aa798b8d6c62d2
MD5 5ffc4509e06b09f4c6b36c9acc5c4c47
BLAKE2b-256 a8c2e7b2d5d9188bfbe11c597ba0daf4672fa8e46711063bd103527636ebadaa

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 555ec9000f369d1137959797f0c0e5e22b6f8608f9aa024e02fcb82a0feb2573
MD5 5289625f9f023fa40ac69892674115e1
BLAKE2b-256 99ad07fe9317e89e0163139b85f15dadd03a995d1091c59de9d768cfac218604

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15cd85256b728e3303bd7bf5fcde3433499a53b2d46b61e9e76e19a81eabdba1
MD5 33295d91a39c3d438896566458cba504
BLAKE2b-256 d4f96bba4d15b74eda8a53fed078e8f46476bce53f6a606d6cef7205e5d6789f

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c03153f743e84ba6577d359719f677ac50c3d6fa4ef1164a77826ad847100e3
MD5 e6d5085f560b33e52d73cd3a63d6f83e
BLAKE2b-256 e94778f62ed2f5e53882960e51a766ddd25c0e2712a4f878ba82f67552d13cca

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d46788d12fe6b15781c447100d21bce41e8db13cd3a1f67f85d61e0ecbcecd48
MD5 f2089ba2bbaf28d0d2377fa90a164684
BLAKE2b-256 c13f060c90326991cf5811bd0048f754f75f0f4d77cd5ca877e95579f925a9cb

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae80c84073ac85d02447edc94a38fc199528f91185ca0b9163a3786db7b22587
MD5 22e226515709477b07c6732387b306c8
BLAKE2b-256 39614d5008388ef9130b5d69e9864f2fbcaddd94f0458a486e01bf34e88ba1f6

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 924cf4d8ada68176ca63391bb53305989f102667d229bc3fe6175df0bcaf9af2
MD5 a93d05c5730303553346475c364c924f
BLAKE2b-256 2e4a0b137df6de37920466d7c3a72dcfe1758f4f24a9742f0d48fd35635e631b

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d35ebce3c538f1d2cd230ba2c12d5ca9378eae1df23efa6ba514ef2835104140
MD5 976b9978dc67c09a132aa6610d5a6506
BLAKE2b-256 1b09c0249805d1a75d8bf4119e23bc97ea8e7b071ddc3ba8b1280b63e0106d8a

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 49d529eebc4388b17308a41c002b0bba9ab9941873a0f886c5017046d7f24e0a
MD5 101001bc9656ac4be2fa390e390b1422
BLAKE2b-256 86fe64d9a0f4a14f19ff84fd6e994060a16387a7c9920baec689066598f4de23

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-2.6.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 54a80c23516138f1698954f2ebea98dc53bab1961e7d06e7103e22716e4e5459
MD5 90e534ec5f6dba4b9f1d025a0acafd21
BLAKE2b-256 e52b883678725476a93e68f9e67493513c5ad38913bb56114952322ab0eac8c1

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: rapidfuzz-2.6.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 657871da00ea25712fae3cfd2b9f6112597c1e332375ab05646b5173bc91a69f
MD5 5f17c0383271b87a690877a850faca4c
BLAKE2b-256 e5c1100972d8dea658df312b0a14e832df48c4e2e8c77a6b8d586e5bcd3a15a9

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dbe6b7296bdf892e430dcfcf1c948e61f1287df4c85e8ea7550c3ac3baa35d64
MD5 3365720ff29110703f217b3e234f42c3
BLAKE2b-256 c77d14d79923171b6af416468d7b98e2d810207144b45d8603229d1cb0bbdcb8

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 d358b76c0f3e9f1e66a6cc1e8d3e60b54d3bc0018ceaf190c58bf3b5c39a1447
MD5 c78f08a075e0f9b8d4d10a45879a5e06
BLAKE2b-256 2a145d2ada872485e31781f682d8d53930faf283b3c6f830807ca9ca57dbfb2c

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 0e04e610a9be16ca09af2943beb3981dd4b2ecf72d312d263b438395ffde7904
MD5 45c95197d1f969ff9cb1f3842259a751
BLAKE2b-256 d937d66bb08653f7ab1442a8f1dcf3d9ad70ba21bd0fd00a54201ae4cb819e63

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 93d75518f0013a2b24ffc9140ad186c6653a1aa19c9661daaffc699572816ce8
MD5 3b7356a39bb9263f73dc88d05a028a3e
BLAKE2b-256 5d64da57af2243e64450933a767f4632f00425a7d7e3aea10f0261484b292510

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 023f22905a952038cf3e7c8aa69247effe5e70bea2ae0a4bfe3e3e8332e175f4
MD5 b7493a736cd3ee58990d0adf28d1b40f
BLAKE2b-256 a01ad050b49bcdb61d3025637f17005487b3fb2e821df8e7acf90e46bdf87f8a

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d77e5f02d8d9bd45c3245c1d7faab5b77297bfdaaef9e3d7e3ae114085f1d2d
MD5 3727ce8f833b410e31d13f4f46a44e96
BLAKE2b-256 6cd7d158c2ae12d16de16cf75f5e24a1b9f1ded797ab70a9e5fd7055a2757185

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1da92070ca866200c0154fef5e2a324dc43006fb8671e0c344a29b45b3212c30
MD5 4be02b206ccf926e8d49df3ceeb52cbc
BLAKE2b-256 dfda114cdfe59036742cc005395af9201bddd31ac297a51a5ade9f25d313d823

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6211c8e4347ea00e2801ec4d789af4b801699c942a0d5cf5823925e6c3b6d155
MD5 d2ce1d7a2a542b30221f7552be5bcd20
BLAKE2b-256 df33e12be5f04996e6ca64e32d8e931c7181f9d70f31d1ff766f7078ad60946a

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0d3558fec2f9ac8185ee629b23de84cf2bce0b619dabeea3b92cbd1eb095f32
MD5 14a89d4cae33fb9e6be123778af119ab
BLAKE2b-256 020ef03e534e24b4ab4771b0afac16434a662c2906831824b8d87cad6a7bef50

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec5f223c597bd2a1919813e681559a7e1d82e002e42a0c866eed880d45414bb6
MD5 d607e3177329d34f39513ff0229af596
BLAKE2b-256 6d06a2775accc97150ac9b8a65bf1b1f9fbf39c9a27fbc3588a44fa4049c569d

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f08b53d5d38a4a96d24912c638967b2d66c50a4c41a4ca380147b4c1e345b5a8
MD5 445bed52cc5746d758fb48f9a1b2c4a6
BLAKE2b-256 ccc31dfde432962daf9a36a23442f7ef27c109a7ef215bee1b68baef4fe5062f

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99d24bb81d29df2a6b93fa7605f71de1d78929dc5835ce78e253b55916ee7a8f
MD5 af08b5662c0dd5adc70b828402d11683
BLAKE2b-256 4849060ae4dd4a7a356dc0219f88dad1377f6cb02806a233e5c37e81b06cdc66

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 36c5c6cea5589b9c89c32451e3ceb6b0f898d926e3ff3647d66c5818a3ebb67a
MD5 a2c6c64e7ba4dd842db7f7ea0398fd07
BLAKE2b-256 3f1c119c8118071e9e443fb52bd1645133a82f44f75b7b45f78283b1d5452beb

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-2.6.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6db5e553e90b337a734816d6c80aacfc91f95f0414088b5139b2eac996c4851e
MD5 f9b6994561d43f16a6070fa995d9d1e2
BLAKE2b-256 be9a6c8e29bd9178a8360afc6ebe844403dc8e2b417b7649876053e76cba0b77

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: rapidfuzz-2.6.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6b3fa7be78ffb2d0b0a3263d0621e329c1a9ea2e4b4d18281cd3bbb61b06ab29
MD5 990a93a206c1f5d66785497071c25dee
BLAKE2b-256 75982bcb6facd1200810c75a5e889886d596ab04f539f20acec30a67435667b4

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c4504d26c9110ddd810a0784733dc8134abe15c9056288e3fdb8c55eeb114c4e
MD5 f9cd42d58f2ae56aea2cf2c88aca8c07
BLAKE2b-256 e5d1b95ef5f2a7cb0fae5e1349aa122e000203759e1bb0780901a66753b3ae3a

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e2914324f509d5e3ac324e4a365141f845809ae8a16cbf103e81ad89888fc0f8
MD5 fadcce3c99ca0e7aa05d10bfdab3f4cb
BLAKE2b-256 49ae20bd99d6671ef694ff978db99229d3cccbd2a5603003a62e0e12116a7614

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 65d618d59241c3d8b123ceccccc8324c7a3c79b84a9dd0c99a42d86d367fa029
MD5 edfac9d444d065ecb622d790deb77c70
BLAKE2b-256 773e52ec4f46cf223320457b15ecaccb38ab932453270c3dc1afc964992246c3

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cf52f9b8a792f826860d678d1fc17e0168b42201abaa68cb0b387437e8152fff
MD5 3b4b40787dbc268d7f5067e30de1f7b7
BLAKE2b-256 3cbf1ea8783c816d67e24905575ff7272b1c94c967c13354b50a61913430ed47

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8b5c71acbb2d705f813088c88f01a788e1e75bf1296569b3cc008546c29d05a6
MD5 9750ecd551b2e600f0e29ad6d7284f1d
BLAKE2b-256 fdeee017faaaf147ab29097700f2eab2489f1248334ada6cb5054ad906304e58

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e1006c3a655cf8307d4827ade5942e92e7b05062cf4f08f8db833615044cf16
MD5 2de6e87e380f8a812f9156ce7a166bf1
BLAKE2b-256 7a0b7da02821c52126acd1dd23e7346d0c4e6d58484b9aaa03e48facabdbaaac

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74f94eadf7eadeaa15d263784c474a37005fe689b05cd608d6fa781c7811f2ce
MD5 6e39da2e4001c7fe37ed52d9903738d9
BLAKE2b-256 90433fde5c6177da6a175aa2c3ee277bc1ed8c763753d16b6b00e9b1f66dbdd4

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4479fe428eabeb057d75f8831ef11049690688d20ca7d91c39e47328eec0c74a
MD5 1b05407a49d83005e4ee33283677c84d
BLAKE2b-256 9c0705f2db06dced27cf41f1988c547adef89e90b8c421bcebee6abd4bca4adc

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3963728b781fc09dcf38bd04d1b66ffaff6372e4b392cbc8867849504aa690c7
MD5 1dd18d3b26a7b2661d2c69f794374598
BLAKE2b-256 238fed20493f7a1d4c73cc0fcb8554bf93c858134096771daa7451830befd2f2

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff8db9a1c1d580efbd72fcb24c7a278ef2e80fe340034a1f34f650f5340a6644
MD5 6911ff2294f0df8dde5f0c4e2eb1b334
BLAKE2b-256 1a2c13a586f60c68d159e643ec517d6c1d3611ae1b55587cb40ed862371eee63

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c4a47ac61be99934c1d4f16bce3b754eeefa7d211a80073db433d00693362b6
MD5 6ec8ef465d1845257ac6208a031d0036
BLAKE2b-256 f344e0451dede3b7c49a90f46e047eaeb8b8be31b22acf90c2c92689a9f04da2

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13dca7b6ca57748224d5a04e154fa73a7d697dd3eda40e68ecc57a91ff74bd74
MD5 12e7bd8e8c2b70124971c27f10cf3762
BLAKE2b-256 a5253e2d99fb7a973e0d8ea8a12d81b9a4b26a9a193e9327bf3c0c99bd3e9a79

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5e9263ea07456320a11b90313c2c9b49b53fdce396283f33b6f019a6a44bc932
MD5 df76c570144e7d5acf99ceedc201032e
BLAKE2b-256 d45d849c4d7ec4d58d1c4efcd36c0270c96360ce1926323de4c2da5876ae715c

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 53aceeab505f696b770a4e6dab4219e7ed4a67a4e2f4407ff2deb1522b542068
MD5 add77f287f4401eee14b57c9236a49b8
BLAKE2b-256 ddaae1abeaa80f1d4c386f11c8e34e3f5a2829e0a0af69272aa1f4b685e3a490

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: rapidfuzz-2.6.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 360c614197ab909f7d4506cf19e36029e5c98cb51d03059b09c30fcb719b29c9
MD5 12ddfe9f78ebceb201403aec03ef0376
BLAKE2b-256 e4ea11fca3fa4f1204881ada6abc25f9b90d7d993b11e82151f779ba3a8b53d2

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1ffc506245aef126b6dfc9db7fce727ba8cfeb8d463e14c5d169265d2d647d57
MD5 59d08672fac35bc612a80ba229bf0f91
BLAKE2b-256 4bedb251d05f39db93bf45e7a435db213b7d75224696185f1bfab36a8d9f69ed

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 69aa6d14cab7c99095525b62d877afe55a4642329ac6a7d3473b43171e05dbb4
MD5 f68894c1db5ba7b57db3fc0df149d02a
BLAKE2b-256 8bae88fb50ca365dde6951c7c1cb8fdb8cedfe340a911644a2e133150d2a5294

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 c10f3f6d408d5a5d8aaa863a34482a641d2d5412201f412feea4b285fda779ba
MD5 5b892ba623da7f3558591150419b6021
BLAKE2b-256 3446a7401af09af8f1e2644d55126efe589b360cd8a2e61cbb7b25e8772117a3

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4d6d4ddabb84ab16fcdaa399dec1ecdacd1bb27901908e71c6093cdee21b47da
MD5 99ca25f0fbb3efeb0a740820a6b5351a
BLAKE2b-256 a812cbd3c441a099ee533de66ca797770c1c0176c59e623aea161c4d56d98504

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e208648927c3980dd2fbac00ce18b883c7ebd870bc5f2918cee171750bb97f62
MD5 c1bc3da3438bed16d7952d13a5639448
BLAKE2b-256 ecb43dfea88acbda767fc535b174296aef04a733ea298885422a708987a9c748

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce5bb99aedb49c298287b8f70e87d5b8e75613b52bdc2656269ac88805fc5a77
MD5 351e513ad2257876ae1baa1bc6d64ca2
BLAKE2b-256 3b75114ba9898e9443adaccdfde6b3593b8d03275898d41ae46d920b27aa1733

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 743fe36e8631394cac0afd8d07a63026ff4b43bc930766baf668dfcb2c96de66
MD5 76589628044a8fcc895e5985022bf3c5
BLAKE2b-256 be9a29d3811a2feb695a6e93685fbe95f5dd042c2c50645b1d6753c61a3eab69

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3516bb3b6190a92e3abf7c7824bd6230814401c2d44efc37d5807ffd52960a37
MD5 b13cb3fa1f7236b2822c148440a6b62b
BLAKE2b-256 dc04f1fc9bb6fe9b6b6bbf3d5fa2c52f3650f4a8f9950fd3ec9eb711aecb5242

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 534e5d7c963966b00e877185e91fc7813cbfd23de0d175f92e1d6b9b3e25946d
MD5 16e0cd0c492bfac39cd014600018427e
BLAKE2b-256 7e7cd81c60213bcb625c9343337698e377c38d4973c9b895649bdfeff5169933

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8bac8cd621d8595e31c16c77df30a47864339ed9ed6b04fc8a17dd853f8d25e
MD5 1a5955b38920d60d673c271a69507d76
BLAKE2b-256 db6123ff5ca0d261b7b2f51c41db2c48bfcdf35fb721e1f028455a62e1413e50

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e11eb2271c637d042d976f75ea98142d78e2c27f4231af3ecee044722afbfb9b
MD5 807eed86400f05274a912caf50b684e7
BLAKE2b-256 040c84562df95598f08d8eedf8d8aa469166e9fd5ad12660d3fd24aa0f2043a5

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8a77fe0addb15557f2593c6c087303b8961c4f40d787b3562eb27712b295456b
MD5 649d989f286668be41b384d817f742f4
BLAKE2b-256 8aec323a0cc4c50647c2a7192e6f60da04f17b8642c81041f8283cfaf752a3c3

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: rapidfuzz-2.6.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 564ad9294801fe5c16a4cb36893e745afe4492e0a73237e2ccbb1566df25ac49
MD5 5d06a807190ef20554908c9990b65bb9
BLAKE2b-256 27669a1d7b31f419475674773751506f84d1ec5ed3ba2797bdb1e72bb076630c

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6a02667319a66f075b27e0a8b02b994f766d2836d328bbc4e9c7fe4767ea332a
MD5 aaf9118fb593661d878dbcf7956ced5d
BLAKE2b-256 28a9d903e114f932d1c39719613b84c6e2f19b95ed285b930970f79d73afeef8

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e8ca9b590b4228224b1328339f99e714e90a2a68cc0f20b0676aecab49cc7c33
MD5 4d7a7d489cdc474a39d8238a1b580904
BLAKE2b-256 06377723a6439a980d9c404b56ecea93e79ed9920d3577fd87453c44b7882c19

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 63db2247d783e0eb2062afba1e28e779f5bd787c6ac457796fcd2909afd3da53
MD5 c453e44ec36ec28b067c04f2090f1ddf
BLAKE2b-256 5de629c4692097053ca0aabe314e4de253e6e1f4150a567a715991803fdfc4f3

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d463ae971b00a04ebf39e8e907500c56b3fba94b31dedb388a5032099fb82747
MD5 dee53a71bf1f80e13920dbafedd13919
BLAKE2b-256 dbf85a11584b6f19a9d813a92c8917090563a4ffdda8773c39b0dda687eddfa5

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b5a79b5e79b638e09b83e1e1e22d14ccd313af3e74df5821fcc60012ff718cde
MD5 8ea54570947a86749a5bbb27ddfe06cc
BLAKE2b-256 3ba8e086111ef77f3ed425b09b542a89c7f0855a92e5b7a6626df85ad75db0da

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16d24109879b6b4bcfd300766b3c0c773de91185a4f646dad923dc544aace8f2
MD5 847ccc394d4904cae61329bd188bb9cd
BLAKE2b-256 a5970478f857c101b65527733048443369f9fa79683bd92c9fe0f6c328f3c532

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e144f29cfce5b0b9dc88b88ec90616063ce9835f33da3905d1a6e2bb486b917f
MD5 a1c15a7307b154e4ec487cf65e3edbdf
BLAKE2b-256 b6e2edfcb6666491ed083955cebcd580660c9e1df0371c73e90ebd7edcbd63b1

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4415ef01feed6c6016529f7a864fb29400101803545a899bd615edd5d14d3dbc
MD5 e958e12a3577c0b9119d7fd100847ec2
BLAKE2b-256 c2b166f55a089d584c077bbb74fc361c83bd104908e89f0e3cd1373b7035ac04

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bfd5ef0273efd4181f387b694f83af44dc1e0a0318ef916fe932ca79f92b0e39
MD5 a0ce2d26b8d8b7b5bef827683f5c1b14
BLAKE2b-256 2ca57102b7f465d941b22919e5572d688b59d022c22708ff9341f8f8d3a03507

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2afe64c6654fc2ea50b2633de643017433258471bffe7825deee1c97a145f920
MD5 73f727a776864447487c80616f825375
BLAKE2b-256 9a438d23551287929c1fe8928662e9e413273c8c8d06298e551d94b8b4449b12

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 69d62d483f7b595b53106e78b76c7f44095f9f459ea0b3a1e3befb215856837b
MD5 9ec01ae8b52ff700c072cfb75bbcad7f
BLAKE2b-256 f9c72ca0e4e353e7ca025169920658cde16b2d72dceae071408aeea70fd5c961

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page