Skip to main content

rapid fuzzy string matching

Project description

RapidFuzz

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

Continuous 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++17 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 comparison between RapidFuzz and FuzzyWuzzy. More detailed benchmarks for the string metrics can be found in the documentation. For this simple comparison 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 cdist in the following way:

cdist(samples, words, 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 cdist is a lot faster than directly using it. That's why they should be used whenever possible.

Benchmark cdist

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. That's 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.15.2.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

rapidfuzz-2.15.2-pp39-pypy39_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPy Windows x86-64

rapidfuzz-2.15.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.15.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.15.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.15.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-2.15.2-pp38-pypy38_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPy Windows x86-64

rapidfuzz-2.15.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.15.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.15.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.15.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-2.15.2-pp37-pypy37_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPy Windows x86-64

rapidfuzz-2.15.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.15.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.15.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.15.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-2.15.2-cp312-cp312-win_arm64.whl (852.6 kB view details)

Uploaded CPython 3.12 Windows ARM64

rapidfuzz-2.15.2-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12 Windows x86-64

rapidfuzz-2.15.2-cp312-cp312-win32.whl (927.3 kB view details)

Uploaded CPython 3.12 Windows x86

rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_s390x.whl (2.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_i686.whl (2.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.15.2-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rapidfuzz-2.15.2-cp312-cp312-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

rapidfuzz-2.15.2-cp312-cp312-macosx_10_9_universal2.whl (2.5 MB view details)

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

rapidfuzz-2.15.2-cp311-cp311-win_arm64.whl (857.6 kB view details)

Uploaded CPython 3.11 Windows ARM64

rapidfuzz-2.15.2-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11 Windows x86-64

rapidfuzz-2.15.2-cp311-cp311-win32.whl (930.4 kB view details)

Uploaded CPython 3.11 Windows x86

rapidfuzz-2.15.2-cp311-cp311-musllinux_1_1_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

rapidfuzz-2.15.2-cp311-cp311-musllinux_1_1_s390x.whl (2.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

rapidfuzz-2.15.2-cp311-cp311-musllinux_1_1_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.15.2-cp311-cp311-musllinux_1_1_i686.whl (2.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

rapidfuzz-2.15.2-cp311-cp311-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

rapidfuzz-2.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.15.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rapidfuzz-2.15.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.15.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

rapidfuzz-2.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.15.2-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rapidfuzz-2.15.2-cp311-cp311-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

rapidfuzz-2.15.2-cp311-cp311-macosx_10_9_universal2.whl (2.6 MB view details)

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

rapidfuzz-2.15.2-cp310-cp310-win_arm64.whl (856.7 kB view details)

Uploaded CPython 3.10 Windows ARM64

rapidfuzz-2.15.2-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10 Windows x86-64

rapidfuzz-2.15.2-cp310-cp310-win32.whl (930.5 kB view details)

Uploaded CPython 3.10 Windows x86

rapidfuzz-2.15.2-cp310-cp310-musllinux_1_1_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

rapidfuzz-2.15.2-cp310-cp310-musllinux_1_1_s390x.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

rapidfuzz-2.15.2-cp310-cp310-musllinux_1_1_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.15.2-cp310-cp310-musllinux_1_1_i686.whl (2.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

rapidfuzz-2.15.2-cp310-cp310-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

rapidfuzz-2.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.15.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rapidfuzz-2.15.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.15.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

rapidfuzz-2.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.15.2-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rapidfuzz-2.15.2-cp310-cp310-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

rapidfuzz-2.15.2-cp310-cp310-macosx_10_9_universal2.whl (2.5 MB view details)

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

rapidfuzz-2.15.2-cp39-cp39-win_arm64.whl (858.7 kB view details)

Uploaded CPython 3.9 Windows ARM64

rapidfuzz-2.15.2-cp39-cp39-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-2.15.2-cp39-cp39-win32.whl (931.7 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-2.15.2-cp39-cp39-musllinux_1_1_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

rapidfuzz-2.15.2-cp39-cp39-musllinux_1_1_s390x.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

rapidfuzz-2.15.2-cp39-cp39-musllinux_1_1_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.15.2-cp39-cp39-musllinux_1_1_i686.whl (2.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

rapidfuzz-2.15.2-cp39-cp39-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

rapidfuzz-2.15.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.15.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rapidfuzz-2.15.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.15.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

rapidfuzz-2.15.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.15.2-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rapidfuzz-2.15.2-cp39-cp39-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-2.15.2-cp39-cp39-macosx_10_9_universal2.whl (2.6 MB view details)

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

rapidfuzz-2.15.2-cp38-cp38-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-2.15.2-cp38-cp38-win32.whl (933.6 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-2.15.2-cp38-cp38-musllinux_1_1_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

rapidfuzz-2.15.2-cp38-cp38-musllinux_1_1_s390x.whl (2.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

rapidfuzz-2.15.2-cp38-cp38-musllinux_1_1_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.15.2-cp38-cp38-musllinux_1_1_i686.whl (2.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

rapidfuzz-2.15.2-cp38-cp38-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

rapidfuzz-2.15.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.15.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rapidfuzz-2.15.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.15.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

rapidfuzz-2.15.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.15.2-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rapidfuzz-2.15.2-cp38-cp38-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-2.15.2-cp38-cp38-macosx_10_9_universal2.whl (2.6 MB view details)

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

rapidfuzz-2.15.2-cp37-cp37m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-2.15.2-cp37-cp37m-win32.whl (928.2 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-2.15.2-cp37-cp37m-musllinux_1_1_x86_64.whl (3.1 MB view details)

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

rapidfuzz-2.15.2-cp37-cp37m-musllinux_1_1_s390x.whl (2.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

rapidfuzz-2.15.2-cp37-cp37m-musllinux_1_1_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

rapidfuzz-2.15.2-cp37-cp37m-musllinux_1_1_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

rapidfuzz-2.15.2-cp37-cp37m-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

rapidfuzz-2.15.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

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

rapidfuzz-2.15.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

rapidfuzz-2.15.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.15.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

rapidfuzz-2.15.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

rapidfuzz-2.15.2-cp37-cp37m-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.15.2.tar.gz
Algorithm Hash digest
SHA256 bfc1d38a7adcbe8912f980a5f46f27a801dd8655582ff0d4a2c0431c02b7ce33
MD5 a01700737f1522febefb0844535d798d
BLAKE2b-256 5fec8428b62c29dc9841acde7e2905d417a654d33c9eb59f9439d06af21d7bff

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 77c540546c0ea7cb229cd9823f9cd174c93988657727880bfdd6db7f353f93d6
MD5 7da165e9f4b35fa337b0e3e5beb2e0f1
BLAKE2b-256 8a59816d5a38955cea765c7933ef5a699c2152b0cb9cb35278d1933322a65d32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e85579a698c9436c2dac1583d4b07cca635faeb9a7adeab03d42938ec0fe9f58
MD5 e67b553ffcdbbe6497e4dc8724f9a99d
BLAKE2b-256 8e74f94761179588f73a8a0f6b49830505cc0761c36c8766769db418cf624b1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c536fbbebb496a76cac3a45f139bf023807b1fb6e2262e77f875fc9b6802ec4e
MD5 a10e04989cc4ef072df0520018fc0cc2
BLAKE2b-256 7af4dd17cacdd843ebc2bfd36226f25816a585b805fe5bf8723e48f701abfb1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 773dff970af0474d7d551a953a0075840ced30315d4885e038a289857ed33365
MD5 f23a35046558f13d494644e703037e55
BLAKE2b-256 16a05c35c125074a79ad45ed1986e15da56b8a7de6946fe954dc8132574871c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 237d5b4cbfacdef0a84f2ead0b4819c586bb74d05f4a380bd2f8489464b7b7fa
MD5 1ceacb6b7150316c01f157dd50d43caa
BLAKE2b-256 31dea69a0b65eb149cc6937ed2614e25d81f5654f0824e399ec31f919315e986

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2ce4a91be05c28b57d5019b09cf0970305760623e34da95f2cddd9067e7fe91d
MD5 a68b2f8b2bf0cd2d68948425a25cef8c
BLAKE2b-256 c8f2df92ae36079bace9b20ede7205231903152b28416b7e493dd796d5fe6e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 796e53c5f78c159aff8e5003bca41bfe007c6a63ee7e7a289765a7db30429197
MD5 5fd9e237d5adebf8d00d128bc4d7ddac
BLAKE2b-256 c7c869ffcc13c7614060b905ca85ca7a2f486bc0a8e209b9c287e027d6c0dce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a34136ab5bbd1b9643f9072102a88471995100b5d734cfaa946d3b63e332e653
MD5 2991ac6d7c10bb4c07183e926099ee6c
BLAKE2b-256 ba683ad0f3391b915d284becd923e558b25176f7de3f981c19db52cb571b9cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a358eb275eadad0ac44f0fdb2255d6b373908c742f94e06b2190dbfaaaaa49b8
MD5 13a13596d18a87e7292cb9a55307480a
BLAKE2b-256 fac2b39939eb2574b3706d2bc2f4e2620fba261c91173c6b56b474391865c132

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6bf1c60432755ed8ab5870a932b7c9382435a240d727d3b5e68f9ff9f83a3556
MD5 56334ee0bd3646716ad0ce6d8eb545b5
BLAKE2b-256 d4808457fe02cd25d650429f15c140da9e330e6405cf738fab39af2d900c1f22

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 153366a00ea22e79f051298fb9606bf9472bca5ce1b82319070fcbea2f7b97d7
MD5 3291ec34cb1edfe36ac1733ab6a59a99
BLAKE2b-256 7c7ca9821614582090a21aca1c01906b8e61f0cfec8e95bc6132f38048d5a7fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdfc137bbe2e942321f725004395444d2594077932ad55f927d6b6e884c09142
MD5 540700bd1a3c808fade05233224bb8d9
BLAKE2b-256 3c4b6664defc5404ceac33a960d8d93671bb21c457fc2f865af5a78ec0aa1a40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba35ec7256a86270a5e2d193ff0089cf84787a1aa94a48f5f6105f86feb8ca38
MD5 934fc768abbe71b2008c704dfeb5b553
BLAKE2b-256 2a62837d1ed2db021a97c4b3fc308320cba6559174b04ff83fde0e2e469cd74a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05b1cfca399461e1f534fbeb3c87f39f2c37ed71f8d1dfb02b78a5b3f81bf0ef
MD5 7c452c88b50832c87a6dfb58e646e0bf
BLAKE2b-256 d0499362e8610a959d6ffd09df6c8624960b7ff934ce1466fd949ce99c243ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b4c632b684478fd8780970685a0c575a5bee65692727ff9898acf75d61cb3ff
MD5 17f2fe4818d3ca36a8d7671c40be0bcb
BLAKE2b-256 deb4676ddc9e7a03e36544e4d187f2021f58eb00730524d98886fd6678c0e410

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 423ef2ca785da77cd081d5bbc57035dc9b91500008a1b8e8e811a0ba3871a5ee
MD5 6502dc6d6653673439f04583546952a2
BLAKE2b-256 f6160f16474665029f34c31ecdfdca6ea03d5af668b5e1bf755b825513a68549

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 19f72cfe2553c83c5e383851aba2891dafbb6446b6ae1ec0637333558ddd564e
MD5 f3105b1be8d35933dd8b901e0080f450
BLAKE2b-256 841c9292b01bacd4b092382b63e90f6bc0370e0d0b197df45b3b70e6df0ac805

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: rapidfuzz-2.15.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 927.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.6

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d5550e0078b2618c4ea7ea761053337eb7c5f5cc515f4941d8108ce9b0c7ee8c
MD5 47ca2421e8d41c95b8be3114ccd12c3e
BLAKE2b-256 0d784ae4c8dc69d24f3145707c36230b92db6e951c5698fb69cafffcdf9a03d7

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9f52338e4e69aff4260c84275c7a704d198315b9b84303e67e584971409347d0
MD5 40ad8b2a4b46be59b5456e9199ace761
BLAKE2b-256 edae858313e8888b72fdacb72516cc5d6567b52930c5396063357cbb80db1f75

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ea541d56fbb7de717a013790c2bce655252da220f23db0c6ce24f628cbe228e6
MD5 a0d207392ad3756cda3bb78bdca0db6c
BLAKE2b-256 5a487d4bcfe132dd28e221c982a41195665310f59f09683a19550420ddd4a13f

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 7e27da009ef39dc64297bcdf09c8d4c79ac90d0015fcf0a01af2a802cd7e1803
MD5 4cea83b74511eaaae4752e862e0b1dea
BLAKE2b-256 5d7cbbb94343f9ca4e91bfac8d9f9bf6a25e8f98577d06b1849aeaa34b148860

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c0f12cc4a8216edfaa0511aae34d8b2f824a05cfe5a26a08de9cf180ae584e88
MD5 f885d4299620a6c7dfaab710b8746a30
BLAKE2b-256 6fed1e08eca827bfd354114faffc018b2a443f182d3f9f003c5c580bf323be57

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c2d64820ae7a795082208a2d762c6a291aca116b86e35c2831e468ae3d4bb5cd
MD5 91558740fc9378d3e7376c0cde08174e
BLAKE2b-256 113f85a9fba0c29aa42a578dbc85f4d4b0e512d9b6e511f2e669324fc42f24e7

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 675c9052b3a04a4b33c92f0b8952ef2439163853422cc583286351ee82fc4d26
MD5 44110ae71514c1d61ab61ad935bc301e
BLAKE2b-256 e1199cf76f987bebca1b238cb05e337e3368fe0dcea47aac385556d3c0567f80

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c94e247011fa7eea14d210123ebda2ecdf98ccc114254353edb4501ee8a19d7
MD5 51b6772a4b3278e1e55588d04ab3997e
BLAKE2b-256 4339618d6fb3ee02fa218f5c1b0d68cef481708c678752cb10831df3ca2fd329

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c279864902a9538b17547e0d9399f05f36ebb9f3356bc5bc4cec2ba137fa5a17
MD5 cd3045fc009222b33f9938fac15e882f
BLAKE2b-256 024d46eb466dfd616003e163783f79a60ffe00dc3a2fa9f6836ea5c295451383

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e7ba83d0846991f67c2ec12ff8530b5e0f929e32a57352080b5f95aade0a62e
MD5 1bae49256a5d0af6af656d242dbdb18b
BLAKE2b-256 930ce1499d90f6ddd926a929c7097b9b55566d49f003d0a0b5c80bc25be97cb4

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3eda119ebcf501dc35054abd9a187b5249b3d93b3965485371efb48e735b72c
MD5 e3a1b565859227b4a0f00069410bf0d2
BLAKE2b-256 42ceb11df8cde6b8e6c30a3b3e1a61427f1519f8e7d2985cd0ba2a98292c0902

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1ecd818c108cefea2c02a9a716e223f811e612a050c8625555336b65d1cabef
MD5 df25c46f632214e6afee0efcc68fc3a3
BLAKE2b-256 e5e1d842dbfbd3edf3bad3362280737baaa715a32350b0e9a268cf126bebb351

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee9ee24eb431d5f73d0b255dc8e66272967a58cd6670cca984a81bbfc7dde904
MD5 866712501ea6511077bf9b5336343da5
BLAKE2b-256 ec2c6162015e1f67e2592b7988a131ff71bde532aa9e6708a845078c1a1186cb

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c0c8475f029a50bf65571b59d332fccd3eb33c5e49283868490a973e9ca7c33c
MD5 80288ae2cc4998dac4c63a3dc389debb
BLAKE2b-256 aa3aa4b73d021054368d090acb859e05802bb1ca0308a30e1df01bfadc0e728b

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ed0ec102b5e405d7562e4df05729a89467ae5c8a364c52fcf8c129398e82e6c5
MD5 ff4384dbdbe335749e9a5d63627df344
BLAKE2b-256 515c6f36877a53b1a8a3342cd3a1d0c54e0364a54e1967212c23f12d5895d331

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3f8eaf74105ffea1d15198b109ff0ca7b6dccafc61e05fa5f98a53d925707c57
MD5 2a15b33fba713851718669ae8434d1db
BLAKE2b-256 7fe16010f99a87cb9ef9692200f5d3b590568c94a42ae2a475063fef94bdcb58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.15.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 930.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.6

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 66db4817c54a6ca91234959c4f6d0cb1fd943ddfb379ee7f9e6dce99b522554e
MD5 8cd983764bded758921556199a6db845
BLAKE2b-256 5246efb7190ce80036a998302e77cf121774c4e0d7aeb07e69b497837d507c03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fd40f263d1ad1cdd4b657e867654674315eea9abf3fce64269610b7bc81265ee
MD5 d2772af9214dff601cb43f6768b8f8e7
BLAKE2b-256 a9c22c5340f9e3ccfd5246f37a0f8decb4d2a7d47eaa68969aaa704b114df957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 454ab8b5c8fc526243133dab013f0a3355efcc1200829cfba7ef56280c7763fc
MD5 738ab248fd17fa88135fb8123398922b
BLAKE2b-256 41eb199d86cac3012ac41bf4b62b4cd7b76594e8cdfb5137a703e6eaeeaf9765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 02fd52352346c965fdc9de9d26f55d61941cc27c876a589eeb3f4efdb7dffdb1
MD5 24375a74270581cf95da799367c86997
BLAKE2b-256 82a1a6e2d222d7b24add7445805ddc2389313fb9c7333b83bfc9bda68af6c54d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 689008633f88cf8802dbd281ac745775aeeee67525d532fcbabda0c8bc5b2e32
MD5 eee86506b32afc373ad59a3ca3f7ad69
BLAKE2b-256 802532751a6bea5c47a492f154f1f14a75f689339123e7fbbb9fe00f23abfd20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5b31f65137e8e45c4fb2dda394bb31598cff8290fb0ce5e66c8cf47d1bc554cb
MD5 d3eb1a2508b682a85220c289f74b9c1e
BLAKE2b-256 b7c5a5548c12de40bd6cc13b9fb871a80d1d492b3e10e3772ef143a6286d284e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb74dcfadf0c5f520074455fe51fa0f62876e5473f5f60521d153afef888ef70
MD5 f5ce2c8cdccc7687e726f3f5dc262d63
BLAKE2b-256 b341ecf90ec85ee999ba7021e1226dc143f5a27fe43378246053fe1b9128118b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5c875da0e0c9709dbdc6e33a7f061192e98943817e6d0e1f5d1d8b07050e349
MD5 4877c013d9de55f6581676c36bc969c2
BLAKE2b-256 7535d57c96b42abb44396c2a71754ef0422a36869b31b3a1166e4fb34b89d951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c02fd6d75de19633f622daf6584cb6ed3148eac3a2b6b08fd3539c166de2921f
MD5 385f1f89709b386dab90db3eb5bba120
BLAKE2b-256 4ba65b4077ed3da738969121b828a34917a0e721ece216e95d2ccb124c4176e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d60a2368e2564155d7209143a6b1dafa1eb457f31cf44698f917cba608d2341f
MD5 452a6807e37080253ed7f1bd3ee36af9
BLAKE2b-256 21cfca9077a9839913fc80e01eb42dde05fee59b84f003b61bfff86ef2b61239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ff36fb50f02259402d7cbdc96f75671b2cb14550db5ad6534a09a7f4940d796
MD5 982fec8d6352fdd7fde6f4abe921f40d
BLAKE2b-256 d7be588408258968ab19649732f4b574d1556eb5e54219c56558639df154b29a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a716bbded611cc82f7b27dcd7335b7bae49706c97a8738283464ff1536e7407
MD5 0f0efb1fcb80cd593ebd41b1286dd0d2
BLAKE2b-256 0edfc78a47489a03b942ebd012791a800723623085b8e4fa3162ee37ca614c90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ae3f741b9b3e95908158e6e56a5f11c1abc51754801dccd495e5cba734c541e
MD5 1af1d0cfebad80294cf877dd08d439f0
BLAKE2b-256 2816c2d4b5f5e89a94edb470dff10905b9181c5c59210f09c9e653bb6f9dc3d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 29352510bcc2b7c3c7f3c1ab6f4c2115dc640cd79a9dc8e01adbae19fb96d359
MD5 845ac3a9839562c3d57d93e798ac4723
BLAKE2b-256 0312dd059d9e4d699bd5e016e8dd0566d2c41ef6a9024e55b7a0a2d2b0341585

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 49972e202251ba60de41a7add8e86a055478020eabf3339300f46a8fdc35d048
MD5 08110e9b4fcf680bf47e95c30929020b
BLAKE2b-256 8b5bd1cc264326e43147337df683f9414d97715fab3b239b82843976dc6d54b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f220df380c127ef8a9129d8878dabf99ed0f543597cf81dfdd30eca03843666
MD5 53926cf45560e65fc70e0c9fe1c6d22f
BLAKE2b-256 7e358c3ad67258c80cafede12d3b87fe5fdd69ea5f3a007c441ae1f124905ca0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.15.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 930.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.6

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 055e85bb1237142da4ed024f9986c3720d484036f8dd550b090582f288b71bb9
MD5 2902ef4f13f925ddcee835826cc4f413
BLAKE2b-256 f93561de7487de89fbca17ee7aa47eec173bf439c2fbcc7e7bbebf1f438fe9ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a9df54f67a22a2447b8b6648880de9ede5e2a2e568644e1de770df9bef5c2fb4
MD5 85fccd79bfbc19f79b4891b17660c24e
BLAKE2b-256 5b52da21e01f396c53419edca49413aef7f784f201f0bddc8085ed925b00665d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 1a78c75ad082fdd58fdcf04551b7737c96aa9e870f1b008b881fc179e7dc6208
MD5 33495a54006d11dffcf2b49e5432787e
BLAKE2b-256 eb5580a31bffbd11d2a63caaf8c111f26c1c125b648415798d3e1702257e3dbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 0860877f455833e5ed7113e859a9b2bf9670b22fdc7a48b81384a04c4a8e8a48
MD5 6d9d975ae3de4c1c1bb48385c4fd7487
BLAKE2b-256 ca5011696af742bae8b9e1faa2de89f4d096862a86e021132fec71f464e2615c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ff82edd7ff9796e2ca349aa583fcb6b9ae96db0b6c5a76dcf0c1f67b1cb86964
MD5 55d56a51424844d55df0753cb2a5a54e
BLAKE2b-256 db73a5df163a609559cb27d9a84e41328267588c920ef507293d8007b1427406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0a252ccb39d628d0f68bab80ba18a02e0d1853a0ec71991e665a6bf81a28c79a
MD5 600ee3f83d365c8a5bc6dd4e10149806
BLAKE2b-256 24ce53029eb13f02cf46fbe71904907a01f1972bdec8675f1e8d044e42830d3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f3e2cc54edffd62ae38a03802b79c0f0cec6c2f89819607350fb5c4c00442d7
MD5 27884435f23ab8f9c2c2d442e2f30832
BLAKE2b-256 bf38c7ed592335963499559507f5012f81443c0f95a0c86e8fa0139fe92c1c0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97f6c4948ca07ad1a30e70da56ec672422ef6bf18d10b6a881e7a64ba73a126d
MD5 2b8b2899488bdec8313437de787fb364
BLAKE2b-256 53711f97adf4b6c7355ad9da71a7d26bd62b67d6a14d0703448c87a1347cb410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bdc497a8930428fa35158c58a744ddaa930621b80adfb61884456d8f184288a
MD5 310ebce7394383a185d4ab46870b1870
BLAKE2b-256 1bce163e2b018113b466579cea224b90cb834b3a8152684413b0e0f996321c32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab2f86733fe34cd825b6cbc688d41b7eb19ae0ce1ea7dc57eac13862d4b9ecb5
MD5 ec6b7b4435405aaf3af2eb08e765d019
BLAKE2b-256 1dd312bfef0f723744829cc5c78ba22a834c0f8629ea052af634d21213454c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bcf1d564ec948a4bf0750252579871be1790de66200f4cf8d624446017d74ee9
MD5 a0fb08f9b7022724aff45945836b95bc
BLAKE2b-256 adfb16405c9cfc6c633c3543b155162599846bbbe96c86dfdc95c515cef7c187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 892d0d75f0b820d949b0bf9502f746cfcbaab98d8a47653fa8369607fde250f1
MD5 122cb399184f000a337a9eeaa5aaa13c
BLAKE2b-256 fd60fab887d95ce6ccd946300e8e4bd30c8b48108bdd4bbccfc7df7e08ee707a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0af367ecb515ae695d7da21b0bd05784f388621e9d6a2e21dc96e6ba5d18d95f
MD5 b271d85c381bfcda2f3c2efc31d6bfe4
BLAKE2b-256 4f52a259372bd7d80faa358db2d8abd9b3cfa1e3250a5cd0e7a9cbab5ff818af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b2e64e08588965b2490ee6b581d3901dd207ec3f6919b1c8da495183acfde953
MD5 61bc2748220f3f842338044589e968c2
BLAKE2b-256 da030e481c5a1019ce439a8c9945929d4cc27e82176b916a5321910ebc17dd3c

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.15.2-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 c6776c27385f3fe5810f3c389f01957d5fa6c3c7f7a76fd9815f2933674f787f
MD5 cd5518ac592e3226598dba632829d06e
BLAKE2b-256 9251ec23c7f8bbd7e947e76492f6f775d2dabd6cef1d0f85d56aab1157394989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9c968a2330b6f2de93e6d54ef7ebd5e5724ee730cd6f225e977cebc7af1df366
MD5 0a3f199e29b8eaa1ab750cb5023cd462
BLAKE2b-256 2dcea9ac040cc43d29fc65feca8bcb9e483f41fb86a0fcad41b11a2b72850b53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.15.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 931.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.6

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 301709491a7960473c34501602cd85a7653df7e0d4189c0ded1e0fd86a83b6ca
MD5 16511b5e49ef895843b42e9f5a6bfcea
BLAKE2b-256 47799c01c15303c2ac52c08256c7ffe7ef96b3b943e32639783e27bfd0dca8f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cadabe1287314bc5053f57c6043df04e33cf5fba33514ca0f4c7b0b8476063a0
MD5 ead26b28e2eeba3cd94bda3c87d6b9a6
BLAKE2b-256 b09106d5f0625fac5dd7079a70b9c977b203b2c8e4cfd96ed04758c3771d05e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 00bd97cd31aad049400b70e0872b54457c4769b296176d5b064f6a5d6391909f
MD5 971a29bfb61b4c45ad72157730ce9495
BLAKE2b-256 133e4eb93ed3309cbe00e0d715514d5a8a468a774d6e6a678d0a07c259f067d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a69ebe7b493557c425ca1d64bf0b5599f0405772b5179070adc2f62f7867836f
MD5 eb09e6d4b3fedda77e7320b59b0f495f
BLAKE2b-256 18e01f37b03086319753e8a71ae5401520be9eb8fba77f2543e2b734b3113530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 499a170088049258d5118bff8cf88f88ef6054544edbea0f2920eba8669e5eb9
MD5 a9aaec1e892aa723b96c2ef870da42ce
BLAKE2b-256 62bd8c25b165bafa20007d2f43f46a4e1f23681b0eb65c8781cfaaaf7bde762d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 199676b8a19746017a0fbad0eb11380cbda4f635b6d2ee477544743b7f99d947
MD5 07b9d7e887b3041ed3dbe64bde8b5d7f
BLAKE2b-256 552a6ade307c4b8fb05d67bae110f6d9951b34ff68bf8d324bdeba9b4e389ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f997a93b85c5798fe139a46c68c85de06ff75b4fd52d52463e46573bff39774
MD5 eae2a0cdb2af2375605399fea2dd5a0c
BLAKE2b-256 060c8d369ac887d50475dfce38b9e2285276ae0ce73f002cf798d806ff0af7a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcbfe5497c93a1b8717ea38b41b47f7e9d155fbc36a6bbfa84b8c901875465af
MD5 b44d8b99f55b9e7f7d3d7b9708b6c1dd
BLAKE2b-256 45ccd05d8871c174cccf6a4629c89368ccb0988f8cccd050e0ab40dc7da1a794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a09187df670e344468597b2c6f5ddc7651be75c4b594baa62c9261a144e5c058
MD5 9152db6401f623fd2fbb89d9a4d7be3b
BLAKE2b-256 1c56cffe02cb86531499b4cbd8ac0113867b532c8267f3c7d83743d304350f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d01bae563a010900abba857e485c3747a78d61c88431cc3d9bea894c7c3e521f
MD5 a8232bc6f4a97fbf122e9171d5aa32ed
BLAKE2b-256 fbc5a93fa1620c734fbf622263d3594f67297598d5640fb74bbdcf5976fbf22b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9c3e07d13661871aebc325b9b3acbd42355a1df1e21ad0435fc81980fd20607
MD5 47d1fa094595206af992b476165ad3da
BLAKE2b-256 27407d2d544356750ff2934394bc4d772a53e5d35a2060f0ab54c688a480e8be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efb94f6adbbbdacac9f687eb151ae9220ee9f141bb259fe07e82a2087114c17e
MD5 e5c3953fc9016b70a2e11c624fcbc95c
BLAKE2b-256 ab01d235b98c26f519a3008a0a2e21087f42c3bb7db71e2bb12622e1b19ce552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee3d9bc953f232bffcbd973137505f6cf5be5ed9c2cdc5e4a5db4be33bf5a734
MD5 c8a0301af7a7a4220ec27b1fb4ef90a8
BLAKE2b-256 33f2b8ea7ba43abbef5645776266350d764f309d4bd15fb4f38cba8d866d3835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7ef4dea11b87234e8b08ee47df9d869ae071bdacb5e55df82673ab9fa622f1e0
MD5 7bda0c08122686288203d9abc9260ff4
BLAKE2b-256 2aea3a25be396eaaf52914ae4e99e816d1af4f04dc12bdba77ecc1bfd1d85ddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d21c66b15fbe253d48399a9d9db361ab2b3462a59b78c9279d9d7d347f5ded91
MD5 59699b7dcd10a847a4c6111266aeec33
BLAKE2b-256 9b780e47913973a16cfb1d70b4086c78409042bdf7e3296b5fc723567072ff52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.15.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 933.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.6

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 aabd9da406fec009c08d2cd1bfa444ee568edf8e7c9a9d5e609885fc81c243a3
MD5 7698e13afe719990a2aa5f34cb8988d1
BLAKE2b-256 9aebb6d4fcea71782b46725c2b99706c9f37153d518b239f56a2b5c622cc4cdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1496540d2ce8b1b9f340e652b9306674fa657d8d3a0b9629421cf31ace219092
MD5 82f599dc84816f9f3e6d4d8f2094b596
BLAKE2b-256 99252f3ca1fb0a4d3d7db5ebdd238db63bc26cc7baca06f69ecf619aa301c374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 3a3df80a264a999a120e637f98a1460d4f2c815323dd605e2022eef97db55448
MD5 89c440fe340ef725738e3b9b4d649189
BLAKE2b-256 efaeb92ffefde4c5c8a0bb4b80cc84f8fa77067b6984685effc99b45a0d9d1d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e427a9c9c1a8adac7b0293ddfe8f5885edf4f425cfd8a3b7ceae20434ec0663c
MD5 84e271f0a383b61743586e419b3ba57f
BLAKE2b-256 96dad13d00da436fd48392939a79a04bb1c884b9c20f726836c3d2620f4566d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 830f799e5ec534633dee3b26c6d5398461dd3ced22118ab590f7fd0f91263058
MD5 d7abe376fcacc6e18621c2efe900710c
BLAKE2b-256 52df7b0e408b6567fe9e759ef97a081b1dd1f1810697a8467ba070f500c348f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1b7a670aed23d9a8d27a0031fa059e8f50f3f7287bd5a075a448251029794de9
MD5 f4d0e8880fa5c08107bf0a9842d6920f
BLAKE2b-256 3b86feeed1ee96322dd38bf1ce9669d9b59588f0e106559b19a18aa768f59b6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e772677a84a166531f975301cb91db234a56eb5b6785e79ff5cb335251580efc
MD5 d6ea3bb1ac8dc4a5ed5acf39ed4fb051
BLAKE2b-256 29b03e15eff7f5894f2160a80f92d5c95564203997e12c7ea644d7e7edd118e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9dd0aab9ffab0010ae28b60f64c98c09c93086b3dc0cb3da863e53a3ca14a2bd
MD5 b77010b449e5c82ef19f4e27045fe894
BLAKE2b-256 55f596b2463767873567ce86d917f0332de8214d9c3349809a604f4c3bbf6ffe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 02b3612c9318006290e6e6d82f1f98b83aa4cf062075c5ea03fac71ba4d31499
MD5 1a847d2e6d97019a4e3faba8332c4aab
BLAKE2b-256 980c9bf6b673d0c01894a7fae4d136b2989862a76e3fe5d7238e6e1e9b3d453e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 34623f51ed5dcbb2ddb97b2fefda34e7b53a047c71aac5ec6b72e42d5263f8b2
MD5 a681f46d60788e49d4da30ac13159948
BLAKE2b-256 f5fc189f7167ae7c93e94c9fe66e58a6547fccf78bb5b164f81d42a44ca9a9d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 898bee3fd785ee695d4cb0d3c689407809cafca472851904aa78143ca6634903
MD5 4c321afe5df4167f883227d3dec9a66f
BLAKE2b-256 d72a71046bc1b5a99304c49fb7d6d035e91d18e3c11c31291fc8ce886440fa03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 780b006bd007e4a071a9c022733f56b0df1f8c269bb7e9dbe079a79e8d9d3b8d
MD5 2993336a88f635a880ec57f0731645ea
BLAKE2b-256 a356eaced252f32a50c9c12f3605115be1c45a0b0859c2a9a9fcd541b5df1ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e110224e0de4fe4876224104a79550d18df15459fe94adf24b4b644e31d69cc
MD5 74696225a21ad0442fa3c2c68805aca6
BLAKE2b-256 5a6dffa4b2bf9a6cea3253f26f44ce63b6a6474323d5f28e8a6470ca5fada557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aab133bea22acbd3fa3740989a2f21d0e275efede2bf406a25a84392086c32f9
MD5 903ab46c618c883b8e83c6be74df3569
BLAKE2b-256 94cc7b07ffcd83ded662dd80118eca30ca7cf59befab56b055006b3392bf7e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cb9f24fafb5ed77fc2ce23b1d8351efcfdb4c05b5f3b96bf004e89344a3d30ed
MD5 efe751a5021af4d75f5a9a1e30ef88bb
BLAKE2b-256 f16db18502bc5e6f21b6a24c2eb0bfbfaee6c54591e274696c2444c8aefe3985

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.15.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 928.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.6

File hashes

Hashes for rapidfuzz-2.15.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 03ceea6cc9e4442379aa8581fbe61bad6e12d7938b16fbdc8442c8d915ad1154
MD5 a79e94805d72a32d818883a37af7305d
BLAKE2b-256 bf12ad4efe7aae1fc8850e03fc8514d3be34c6fe25e3d4efddef23f3b4c7db63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5fb89d3a8d389eca258aba913adc81a8b8231b48896abbcb2f05768455584c4e
MD5 73ab7c0955d1319532a605363842b92a
BLAKE2b-256 06991cd1a1168f15b6890a4071a97c10b855f281def52fc3874e6b4720dc30be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 b32e4fd756a32f92b6f8b707a682ab4054b90c835021c01d81baba22f6277172
MD5 effb2afe9241e1d4a3d26820cea51b6b
BLAKE2b-256 8c22dd3498218ec6f7dae058343421418bfab7365e1fb62485b34c447693bb40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 6edc9b138797c60c1276171d8c97f53b17e304ade37c022ff97b1e995f79ba79
MD5 44c9232b08e2937ab0d1b3647e9af394
BLAKE2b-256 0d16099cfe2ceb4aea1752a3278faa5b1b6467fac1329fb29bc18469cf1b567f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e46f82fda6f969da8be5a8f33a057b2a9c6e7b80ab8679344a72e6fb708a48fc
MD5 60aa9dbc3c1e88de64aa0654b3e720d5
BLAKE2b-256 9ad22cdf33914802684b828ac8d823220206a3b93b822e2c785b5a3156869959

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6c32c855e16ef3890037569f6f1299857172c674cd8946244e5fb7d5cacb771a
MD5 809ea9ff9f67231f33b08ef2eec99d55
BLAKE2b-256 cc9bc8201f12b051fe8cdfbfb506d8b5f663bf06f85bc6d84b780696fe7586b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ceecb57ec9e5c0d5bd9bd2881731c59cdc9a2c51711fd0b29b5bf14bdcab465f
MD5 badf05062866f3582e6459ea7505231f
BLAKE2b-256 c9f400f8260638ec01dee05ab9c794dd0de5c9c60557c8843ec286a0cf518526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f55ad06ff79c2ffa3d1f5b38ce8f3082fa4db57c04be7de85243bd0625ca4ef
MD5 3a58af832d4e417e92045f962341ae9b
BLAKE2b-256 7a7b076f747943e63a021ab0c64e0a7ed35e2af55c024fecd6506c5c52ba737c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58073d3ebed8c0f51e163654dcb5e34f1e8b67f7b23361441861c6021243184b
MD5 9604b1142325f9e373cc9a5eb6fd28ec
BLAKE2b-256 54a850f5cc2aab597d8997d9af162de8ca83c10e7a9ae8cb98576f63d3c89e15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e9fb88659cff92eba1b441efe426a4c349372137ee713b3a3933cc6ead73234
MD5 f2aaf2d4776a5f8ebc3b8e41e7533df3
BLAKE2b-256 7f15750d0167009e160773631ad31af8b14088516be42a9982d72d78390c6875

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a100ca26804b9ac2b2c0f70c632102bc0005d2cafe6d748f5d01dbe569c378bf
MD5 01cd620207dd3e631192e6aba9f3b0e1
BLAKE2b-256 190492f914da101d96a0313f099bd8f81bf5e0a92e8b1193e0d4095e5218b1eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.15.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a02f1b08879a74aa7b4e562823f67a2e913fe3bd18c5346d9270d16fc588500
MD5 6e5796670506641c78d11e015d35df55
BLAKE2b-256 688af4cc620c0f2db92031b6f600eb5e1d620b353a25dbc4c9d310cb9b9457fd

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