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 Code Coverage 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
  5. It can be largely used as a drop in replacement for fuzzywuzzy. However there are a couple API differences described here

Requirements

Installation

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

with pip

RapidFuzz can be installed with pip the following way:

pip install rapidfuzz

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

: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/rapidfuzz/rapidfuzz.git
cd rapidfuzz
pip install .

Usage

Some simple functions are shown below. A complete documentation of all functions can be found here.
Note that from RapidFuzz 3.0.0, strings are not preprocessed(removing all non alphanumeric characters, trimming whitespaces, converting all characters to lower case) by default. Which means that when comparing two strings that have the same characters but different cases("this is a word", "THIS IS A WORD") their similarity score value might be different, so when comparing such strings you might see a difference in score value compared to previous versions. Some examples of string matching with preprocessing can be found here.

Scorers

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

Simple Ratio

> from rapidfuzz import fuzz
> fuzz.ratio("this is a test", "this is a test!")
96.55172413793103

Partial Ratio

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

Token Sort Ratio

> from rapidfuzz import fuzz
> fuzz.ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear")
90.9090909090909
> fuzz.token_sort_ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear")
100.0

Token Set Ratio

> from rapidfuzz import fuzz
> fuzz.token_sort_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear")
84.21052631578947
> fuzz.token_set_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear")
100.0
# Returns 100.0 if one string is a subset of the other, regardless of extra content in the longer string
> fuzz.token_set_ratio("fuzzy was a bear but not a dog", "fuzzy was a bear")
100.0
# Score is reduced only when there is explicit disagreement in the two strings
> fuzz.token_set_ratio("fuzzy was a bear but not a dog", "fuzzy was a bear but not a cat")
92.3076923076923

Weighted Ratio

> from rapidfuzz import fuzz
> fuzz.WRatio("this is a test", "this is a new test!!!")
85.5

> from rapidfuzz import fuzz, utils
> # Removing non alpha numeric characters("!") from the string
> fuzz.WRatio("this is a test", "this is a new test!!!", processor=utils.default_process) # here "this is a new test!!!" is converted to "this is a new test"
95.0
> fuzz.WRatio("this is a test", "this is a new test")
95.0

> # Converting string to lower case
> fuzz.WRatio("this is a word", "THIS IS A WORD")
21.42857142857143
> fuzz.WRatio("this is a word", "THIS IS A WORD", processor=utils.default_process) # here "THIS IS A WORD" is converted to "this is a word"
100.0

Quick Ratio

> from rapidfuzz import fuzz
> fuzz.QRatio("this is a test", "this is a new test!!!")
80.0

> from rapidfuzz import fuzz, utils
> # Removing non alpha numeric characters("!") from the string
> fuzz.QRatio("this is a test", "this is a new test!!!", processor=utils.default_process)
87.5
> fuzz.QRatio("this is a test", "this is a new test")
87.5

> # Converting string to lower case
> fuzz.QRatio("this is a word", "THIS IS A WORD")
21.42857142857143
> fuzz.QRatio("this is a word", "THIS IS A WORD", processor=utils.default_process)
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', 76.92307692307692, 1), ('New York Giants', 64.28571428571428, 2)]
> process.extractOne("cowboys", choices, scorer=fuzz.WRatio)
('Dallas Cowboys', 83.07692307692308, 3)

> # With preprocessing
> from rapidfuzz import process, fuzz, utils
> process.extract("new york jets", choices, scorer=fuzz.WRatio, limit=2, processor=utils.default_process)
[('New York Jets', 100.0, 1), ('New York Giants', 78.57142857142857, 2)]
> process.extractOne("cowboys", choices, scorer=fuzz.WRatio, processor=utils.default_process)
('Dallas Cowboys', 90.0, 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

This version

3.9.7

Download files

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

Source Distribution

rapidfuzz-3.9.7.tar.gz (1.6 MB view details)

Uploaded Source

Built Distributions

rapidfuzz-3.9.7-pp310-pypy310_pp73-win_amd64.whl (1.6 MB view details)

Uploaded PyPy Windows x86-64

rapidfuzz-3.9.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-3.9.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-3.9.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-3.9.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

rapidfuzz-3.9.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.9 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

rapidfuzz-3.9.7-pp39-pypy39_pp73-win_amd64.whl (1.6 MB view details)

Uploaded PyPy Windows x86-64

rapidfuzz-3.9.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-3.9.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-3.9.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-3.9.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

rapidfuzz-3.9.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.9 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

rapidfuzz-3.9.7-pp38-pypy38_pp73-win_amd64.whl (1.6 MB view details)

Uploaded PyPy Windows x86-64

rapidfuzz-3.9.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-3.9.7-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-3.9.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-3.9.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

rapidfuzz-3.9.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-3.9.7-cp313-cp313-win_arm64.whl (850.1 kB view details)

Uploaded CPython 3.13 Windows ARM64

rapidfuzz-3.9.7-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13 Windows x86-64

rapidfuzz-3.9.7-cp313-cp313-win32.whl (1.8 MB view details)

Uploaded CPython 3.13 Windows x86

rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (5.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

rapidfuzz-3.9.7-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

rapidfuzz-3.9.7-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

rapidfuzz-3.9.7-cp312-cp312-win_arm64.whl (851.2 kB view details)

Uploaded CPython 3.12 Windows ARM64

rapidfuzz-3.9.7-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12 Windows x86-64

rapidfuzz-3.9.7-cp312-cp312-win32.whl (1.8 MB view details)

Uploaded CPython 3.12 Windows x86

rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rapidfuzz-3.9.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rapidfuzz-3.9.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rapidfuzz-3.9.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (5.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rapidfuzz-3.9.7-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rapidfuzz-3.9.7-cp312-cp312-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

rapidfuzz-3.9.7-cp311-cp311-win_arm64.whl (856.5 kB view details)

Uploaded CPython 3.11 Windows ARM64

rapidfuzz-3.9.7-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11 Windows x86-64

rapidfuzz-3.9.7-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11 Windows x86

rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_s390x.whl (3.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rapidfuzz-3.9.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rapidfuzz-3.9.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (6.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

rapidfuzz-3.9.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rapidfuzz-3.9.7-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rapidfuzz-3.9.7-cp311-cp311-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

rapidfuzz-3.9.7-cp310-cp310-win_arm64.whl (855.4 kB view details)

Uploaded CPython 3.10 Windows ARM64

rapidfuzz-3.9.7-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10 Windows x86-64

rapidfuzz-3.9.7-cp310-cp310-win32.whl (1.9 MB view details)

Uploaded CPython 3.10 Windows x86

rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_s390x.whl (3.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rapidfuzz-3.9.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rapidfuzz-3.9.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rapidfuzz-3.9.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (6.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

rapidfuzz-3.9.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rapidfuzz-3.9.7-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rapidfuzz-3.9.7-cp310-cp310-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

rapidfuzz-3.9.7-cp39-cp39-win_arm64.whl (857.2 kB view details)

Uploaded CPython 3.9 Windows ARM64

rapidfuzz-3.9.7-cp39-cp39-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-3.9.7-cp39-cp39-win32.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_s390x.whl (3.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rapidfuzz-3.9.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rapidfuzz-3.9.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (6.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

rapidfuzz-3.9.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rapidfuzz-3.9.7-cp39-cp39-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rapidfuzz-3.9.7-cp39-cp39-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-3.9.7-cp38-cp38-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-3.9.7-cp38-cp38-win32.whl (1.9 MB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_s390x.whl (3.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rapidfuzz-3.9.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rapidfuzz-3.9.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (6.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

rapidfuzz-3.9.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rapidfuzz-3.9.7-cp38-cp38-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rapidfuzz-3.9.7-cp38-cp38-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.7.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for rapidfuzz-3.9.7.tar.gz
Algorithm Hash digest
SHA256 f1c7296534c1afb6f495aa95871f14ccdc197c6db42965854e483100df313030
MD5 c321678876a915cbb4c8dc6c8fccf054
BLAKE2b-256 17ac1f1bf726645d7740df2d1371380e35098bb8a460f482343cba1dd1668ab6

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1f1a33e84056b7892c721d84475d3bde49a145126bc4c6efe0d6d0d59cb31c29
MD5 db574bb839c6d849adf3b7db4a131f90
BLAKE2b-256 f19587433bee93a3adec5a81244f3b3d4c694cc3adaac924eeaf84174040b73a

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9dba13d86806fcf3fe9c9919f58575e0090eadfb89c058bde02bcc7ab24e4548
MD5 0f10802d34d8e5735382c11e78d7bd70
BLAKE2b-256 2a102dedc65458ef52e06db061def202449ff7deb06909350f60f323cb2d7df1

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a3b36e1c61b796ae1777f3e9e11fd39898b09d351c9384baf6e3b7e6191d8ced
MD5 652158f0ca475bec79df8b5b070ec8b1
BLAKE2b-256 35f5432986f296c4bd43e80b04a09d7d64ae265b7bfb5ff3e28843145dd0043c

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1230e0f9026851a6a432beaa0ce575dda7b39fe689b576f99a0704fbb81fc9c
MD5 908b1923216cacc47707ea2e49784baf
BLAKE2b-256 1af7b44843524be03df630b8b18a815a0570de5c3bb092d41b89f504cb029037

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68bd888eafd07b09585dcc8bc2716c5ecdb7eed62827470664d25588982b2873
MD5 1a43284009d470f7945fdea4e44f3379
BLAKE2b-256 b1580027dd6c8d2a3a2fb762677697b9fc2b5eb03224934c24048daff381c0ab

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d7df9c2194c7ec930b33c991c55dbd0c10951bd25800c0b7a7b571994ebbced5
MD5 c6020346f2257e3ba5fbd8a22465b86c
BLAKE2b-256 da0123fe5ddedeef8af6c7c5dcff379b4be16f409406d852eaf94699a8f36817

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3ed5adb752f4308fcc8f4fb6f8eb7aa4082f9d12676fda0a74fa5564242a8107
MD5 b47dbaf9c2cbc4c9b45b5fa66f93cab6
BLAKE2b-256 d84ed45fe652a5b7711bf9a825a7e208670018f3cc9d14f33e08b277e264a33f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df596ddd3db38aa513d4c0995611267b3946e7cbe5a8761b50e9306dfec720ee
MD5 079294d3b2a8d3cfc76dfb3e957e6250
BLAKE2b-256 883ef310e2afb97f11f90f80b1d0a2e1da59a4e705efcfd916038a7adb0901ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9012d86c6397edbc9da4ac0132de7f8ee9d6ce857f4194d5684c4ddbcdd1c5c
MD5 d56eddfde7a8f00993ff7c010c89e2ff
BLAKE2b-256 9fb6f6ecd35b3f773a8da9f19fd90d4b102181b381ddd40c53c8bb51e43ac468

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 591908240f4085e2ade5b685c6e8346e2ed44932cffeaac2fb32ddac95b55c7f
MD5 91a99b1e81cc2443f99fc86a1dd52aa5
BLAKE2b-256 666ef20933c5b362516ea0706b79e9ca31f2608f54d1f5eee9025db48463df9f

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03126f9a040ff21d2a110610bfd6b93b79377ce8b4121edcb791d61b7df6eec5
MD5 d176695572e2bff3a05ae00bdac05050
BLAKE2b-256 1d9d74b6a09878f5c3e90875da88cb3b25026032e240f75ab48c9c955c5fedbd

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a3c0783910911f4f24655826d007c9f4360f08107410952c01ee3df98c713eb2
MD5 13c497b34f1e5ccd2dc4c03e66a3ecb6
BLAKE2b-256 eaf64850513ebbd6125561c41f14becf8756cf0cac290741d63ac7cc4c78a466

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7abe2dbae81120a64bb4f8d3fcafe9122f328c9f86d7f327f174187a5af4ed86
MD5 df48530aebabf5d3c54ade45e73c4555
BLAKE2b-256 030699bcff94c46181c5a1a34466f43e0a8c0313acec1fa1afa9e3c156257eb3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18669bb6cdf7d40738526d37e550df09ba065b5a7560f3d802287988b6cb63cf
MD5 96ba8474d06aaf9fa7efd5539b58600b
BLAKE2b-256 5deab5023098ae91985d87a61b2e6782198b70eaed3c22e031c2356d080b29a3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 521c58c72ed8a612b25cda378ff10dee17e6deb4ee99a070b723519a345527b9
MD5 7533e98910290fd7ddc5c61b51228f82
BLAKE2b-256 634bcacc8964bca7f8051dde18d104133aee3767a137eddc3b97855d39e6109e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9dcd14cf4876f04b488f6e54a7abd3e9b31db5f5a6aba0ce90659917aaa8c088
MD5 746dacc2c6b9160c8ad1efef773bac47
BLAKE2b-256 0d9eb8c5e768827319f8d3e902c6028308e179baf536f2d3ce524464cbcd337c

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ece45eb2af8b00f90d10f7419322e8804bd42fb1129026f9bfe712c37508b514
MD5 d8d48393edac090320cc52a0dcff692e
BLAKE2b-256 695ccf360460fa4b707beddc2fe62e27c3b3356126617812ec3b83de29dce789

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3492c7a42b7fa9f0051d7fcce9893e95ed91c97c9ec7fb64346f3e070dd318ed
MD5 54afdd2728b3f56073d97ec712d1d7f8
BLAKE2b-256 57bf41d279d225a113d07f20fff10a7d5b71c89d9dad311cfaaa325b826ca1ce

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 19c64d8ddb2940b42a4567b23f1681af77f50a5ff6c9b8e85daba079c210716e
MD5 086188f8345bc049f6d873f137f31444
BLAKE2b-256 96c7b1fbae97a9e53ae833d477653bf5ab095b14338da0e79db4ae4bbf985ebb

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b4f86e09d3064dca0b014cd48688964036a904a2d28048f00c8f4640796d06a8
MD5 7210da88b4c168ea20287f344374c603
BLAKE2b-256 6e3ccc468b42740bb77dc94dd92cd29cf18ea4301a6f0cea3663d3291d97800a

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-win32.whl.

File metadata

  • Download URL: rapidfuzz-3.9.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1dc516ac6d32027be2b0196bedf6d977ac26debd09ca182376322ad620460feb
MD5 27dd3d1ff8fd6319f943d4c0e8c7ac91
BLAKE2b-256 6dc7a4add18324590be9cf311763baf0b3afe24a3065f54604052e6141161a45

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9fbf659537d246086d0297628b3795dc3e4a384101ecc01e5791c827b8d7345
MD5 5143825b849e8b744b2691260da579c3
BLAKE2b-256 a5773486e011a9977ca5f070469f1ff38c7e38877e5ca4299368c85af48e1189

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 95b8292383e717e10455f2c917df45032b611141e43d1adf70f71b1566136b11
MD5 91297e45cc498a9a3e56c5a6c651133c
BLAKE2b-256 35175cb93655581eccf105c006c3d1918e9e7f359df6b2dbe0fbb012e4a4a4cd

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a8feac9006d5c9758438906f093befffc4290de75663dbb2098461df7c7d28dd
MD5 3ccd5aa49b045f0952a6f232bb3da7ca
BLAKE2b-256 dcdad548faf4d8cf14c0c58bd2ea91d27d3f0137dd2a7973eece7a561e0b9a2c

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 057bb03f39e285047d7e9412e01ecf31bb2d42b9466a5409d715d587460dd59b
MD5 92f8a8d236d659106a85ff17cc7e71ac
BLAKE2b-256 96fadaf98b62dc5e6b6e094d6d17f0b23340463f1b4c9e556249103acba4ee7c

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4ba2318ef670ce505f42881a5d2af70f948124646947341a3c6ccb33cd70369
MD5 64ee0781e521aa5948c87128288c15a7
BLAKE2b-256 3abc394837f81c377aad90cc6d5e0fa138da91101a63cac31b31f2ca85a65c7c

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fb76e5a21034f0307c51c5a2fc08856f698c53a4c593b17d291f7d6e9d09ca3
MD5 6e006ae17793a53837f69bb24937e74a
BLAKE2b-256 758d73d521da17f32ad389e8593f9d3d5df06b889ed2d261ca5a5bed657a13e8

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b1c2d504eddf97bc0f2eba422c8915576dbf025062ceaca2d68aecd66324ad9
MD5 d733cb6769867799b57729d231392a73
BLAKE2b-256 9cef96159e7e0236efe9ffb78d7b02cee1b6a02dede9c23ede56ae4454031348

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc3e6081069eea61593f1d6839029da53d00c8c9b205c5534853eaa3f031085c
MD5 10ccedc79e9c826583d3e5c0268e2e01
BLAKE2b-256 0771548af38b262bc4494266a7e26250e22ebd686203b5c9269e2878383b34fc

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 578302828dd97ee2ba507d2f71d62164e28d2fc7bc73aad0d2d1d2afc021a5d5
MD5 30fa4216cdfb12aeb48bb23229c8bdd2
BLAKE2b-256 cc0e4c7e85cc9f10ea005c3695af3f6ba47e5796fbe28a7700170cb09b266156

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8772b745668260c5c4d069c678bbaa68812e6c69830f3771eaad521af7bc17f8
MD5 1544ff427b9cfd2fd57ca34472729085
BLAKE2b-256 f2531c2a0a525f709bb0cb0891c51d914a08e8f1e2f66078d43c17586f43610a

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47e92c155a14f44511ea8ebcc6bc1535a1fe8d0a7d67ad3cc47ba61606df7bcf
MD5 940ab7521314cfebad152d5e13b8a465
BLAKE2b-256 93609cfaac357675e8459f3360cd300cbb34dfa58061f8ad3acab0b5bf474c6f

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fde81b1da9a947f931711febe2e2bee694e891f6d3e6aa6bc02c1884702aea19
MD5 5792cda532823406c9a31e38f680b3da
BLAKE2b-256 785c7a2f42b4610a1edf23aca94f609bf3390671e3b0e1bb42dab32274699b23

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7c20c1474b068c4bd45bf2fd0ad548df284f74e9a14a68b06746c56e3aa8eb70
MD5 2f7c8d85d164a3f8a2a244e013cb29ae
BLAKE2b-256 0d168fadcef053e7658e731e2155ca795279c5159a28035891324f482e4ff6fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 953b3780765c8846866faf891ee4290f6a41a6dacf4fbcd3926f78c9de412ca6
MD5 94083abab2f324961e7879d558874c22
BLAKE2b-256 70e64aa3e901452f54c201435da7f61a896daa16dce7899d4aebb856666ddb6b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 579d107102c0725f7c79b4e79f16d3cf4d7c9208f29c66b064fa1fd4641d5155
MD5 89527247373b2c347b2f5ffa8f565c2e
BLAKE2b-256 0dc5a9ab2e06a6661aa6f3955b478e3c6c6c2ebd9016570d6a34e88f41b4e59f

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a93c9e60904cb76e7aefef67afffb8b37c4894f81415ed513db090f29d01101
MD5 6f8446beb90b15d34f47613213020e27
BLAKE2b-256 3800e7b2656faa7a4ec6760299ab973d37fa9cae6ae91f6e3ca3987577665b99

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 35d3044cb635ca6b1b2b7b67b3597bd19f34f1753b129eb6d2ae04cf98cd3945
MD5 47f8f09b74074831c7ea4b796e712eda
BLAKE2b-256 733aedccc360599fe6153472d4f2452cff65dd45422453141504d5002e1ce450

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ca66676c8ef6557f9b81c5b2b519097817a7c776a6599b8d6fcc3e16edd216fe
MD5 7320b7ca822350d9a3c9b81bd5df1451
BLAKE2b-256 612182acba73a147dd009aef4603da95ff8cbacb644e79f409244ee65fd5a299

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b997ff3b39d4cee9fb025d6c46b0a24bd67595ce5a5b652a97fb3a9d60beb651
MD5 0e1ea95662570ff006f595957b5058dc
BLAKE2b-256 30720fb88a4e5d500cfc15bcc1d3c854fe53cf6242ba917a0626a615a1f5c579

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f8bf3f0d02935751d8660abda6044821a861f6229f7d359f98bcdcc7e66c39b
MD5 d11b7318503a903a728d09fba79ecf27
BLAKE2b-256 e733d3dce4519a2d2d0c52174780aba6908ecb7c01182d8c3411a30d85849635

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 268f8e1ca50fc61c0736f3fe9d47891424adf62d96ed30196f30f4bd8216b41f
MD5 df81ad13d7c370f0b12c19038f93789b
BLAKE2b-256 1ebf4717fb73e06c717d25472433420dec570cf8ee283a23529a643eb6317284

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 603f48f621272a448ff58bb556feb4371252a02156593303391f5c3281dfaeac
MD5 659e82ca5ba76c16fe3074f62ff01bdf
BLAKE2b-256 5b66c62120f3d559136eb5d9504d0a1665f3d3ba63f0fe936360a605de8b3a4a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be3a1fc3e2ab3bdf93dc0c83c00acca8afd2a80602297d96cf4a0ba028333cdf
MD5 3462d0ba87a1e16443ac5196238ebef9
BLAKE2b-256 c33771c46506ec0e71a3508fc1ea23a44c34f948b8e21057dd5cc23ebd252267

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d73ee2df41224c87336448d279b5b6a3a75f36e41dd3dcf538c0c9cce36360d8
MD5 e2dbf2256756ddd41490020bb109112d
BLAKE2b-256 244d3e7f2afdb4571031e2b122d5d7a029dbc3e98a54d11ef5b20be142dbc688

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae1a38bade755aa9dd95a81cda949e1bf9cd92b79341ccc5e2189c9e7bdfc5ec
MD5 019caad8d7a0683ae86477852cdfdf69
BLAKE2b-256 f0d5294e26070cc5f3ad079c001606f6fcccbd6e0d7e8b58dd1c9d4048971706

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32532af1d70c6ec02ea5ac7ee2766dfff7c8ae8c761abfe8da9e527314e634e8
MD5 9851c874309581dd970647f6965e3928
BLAKE2b-256 3358d67551479432be743b9e36eaf46e8ca6a76a8edfeb060137856576836129

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ef6a1a8f0b12f8722f595f15c62950c9a02d5abc64742561299ffd49f6c6944
MD5 c5ff309d9a25c7da3762d793f56fbdc4
BLAKE2b-256 c5693382886cf73774d6b4085e177e665326ee065d806ed775aa61e5d9e5cd8a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 675b75412a943bb83f1f53e2e54fd18c80ef15ed642dc6eb0382d1949419d904
MD5 cb21d425fcce44c6ba310be7eb0ecbb2
BLAKE2b-256 6743ca9cda58a08808b891866afecf567f5dd317c72816fe3df50cb87649d625

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c4f28f1930b09a2c300357d8465b388cecb7e8b2f454a5d5425561710b7fd07f
MD5 d67088ff4a00c852db00464ae482694f
BLAKE2b-256 64d9c86f7b247b1603cae62d5d39cbc12f5baaeb34e80fd00c7211fe43157a66

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a40184c67db8252593ec518e17fb8a6e86d7259dc9f2d6c0bf4ff4db8cf1ad4b
MD5 9b806b932a9cb3f9844fed4e247cbe8c
BLAKE2b-256 f0cc67f959d95e556f1925b4c9211fb7f63c0df60610c28c2c618b48df9ff1d6

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4da514d13f4433e16960a17f05b67e0af30ac771719c9a9fb877e5004f74477
MD5 71c857da789ab26495090fb2d7cb2132
BLAKE2b-256 77a3ac9b99d96a91b5d2ffa920481cbd94fcc73a042aee0b17ba627a146e7199

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1de91e7fd7f525e10ea79a6e62c559d1b0278ec097ad83d9da378b6fab65a265
MD5 e69ce7d371f0d101265e9eff00de79b6
BLAKE2b-256 0a546f44905e09fc0136621ffa914737326aa3b6b9b6c24f3565af1c63cf3f3f

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1ee2086f490cb501d86b7e386c1eb4e3a0ccbb0c99067089efaa8c79012c8952
MD5 fe05b4a447a97816bad1685e923f17df
BLAKE2b-256 b35f08d5637681c80c2d5ae20d2f1e5be9e37351e8313359c2a00770efa14be7

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d92c552c6b7577402afdd547dcf5d31ea6c8ae31ad03f78226e055cfa37f3c6
MD5 e3d5f9823ede0c69f764c978d21956cd
BLAKE2b-256 4185e3531a970ae92dfe8c1c8060920d83ba083f4d56cd0953f444aaa15af9a9

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8501000a5eb8037c4b56857724797fe5a8b01853c363de91c8d0d0ad56bef319
MD5 2432781c660815e63e7a129f45d15857
BLAKE2b-256 87f3787a2950df7cc23eac5a89b9ee47cf833a9b5759f59b90a50d351467c257

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 965693c2e9efd425b0f059f5be50ef830129f82892fa1858e220e424d9d0160f
MD5 394cb699991fea66ba63915728a7a5aa
BLAKE2b-256 8ac4a06602d0bf830414dd6b458785d868252d6f2cbe1a0a1f57a62cfab1a9ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cfa74aac64c85898b93d9c80bb935a96bf64985e28d4ee0f1a3d1f3bf11a5106
MD5 02491941ff5215ce817fa60851a570aa
BLAKE2b-256 e63eea01677779779819c083580e501aba1773f4fbcd7082fc52f110e73c09f5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4e049d5ad61448c9a020d1061eba20944c4887d720c4069724beb6ea1692507
MD5 174b420fdc004e95abeb0e8268afd0bb
BLAKE2b-256 83313194dc0262dfa3c3bd585e6aac95af21c78e26981a9b19da08a4fd97adda

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e6d9db2fa4e9be171e9bb31cf2d2575574774966b43f5b951062bb2e67885852
MD5 e77318d8d824e7c49993caf9b6a5a817
BLAKE2b-256 c1f0344a41ac82970e0a7b88821f9cfd3b46779db88089c146c9937e4bbfcc6c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c33211cfff9aec425bb1bfedaf94afcf337063aa273754f22779d6dadebef4c2
MD5 1ac46685fe779464d1d41ddafaf6e0e7
BLAKE2b-256 0609efe65f1b01e1778e57b8f29e9f8d39c8203c6022698a246f6c57e8471000

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 048d55d36c02c6685a2b2741688503c3d15149694506655b6169dcfd3b6c2585
MD5 fa04b6eb4e6d1f2cd8b88b2779d4f40e
BLAKE2b-256 60e5c919e2257c8c3ee43155f580bb86682d3b1f16256dc3622ca2e416068d67

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d098ce6162eb5e48fceb0745455bc950af059df6113eec83e916c129fca11408
MD5 2e72f41dd189ad6efd71c8bb90aae679
BLAKE2b-256 18dd530be3f5fb7ad43cc8ccce2cb391146602e11b5df1f1e948adfa7bae0802

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 836f4d88b8bd0fff2ebe815dcaab8aa6c8d07d1d566a7e21dd137cf6fe11ed5b
MD5 1b5d8b0d0ef8dace2359f2ec4f4c9f6f
BLAKE2b-256 617b809ec9cbc881015dac6be3f301331636ca4e60956c13ecabdc92df8c220f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0d1415a732ee75e74a90af12020b77a0b396b36c60afae1bde3208a78cd2c9fc
MD5 a2b54ef604689091713a30fac97083b6
BLAKE2b-256 0e1c778e96d260990e1e2c1efb4a6e0f74f8f019959a80992cf50421b0472b7e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3445a35c4c8d288f2b2011eb61bce1227c633ce85a3154e727170f37c0266bb2
MD5 e7c5c7618fef3df651e35392b1147cca
BLAKE2b-256 ea5065203f60a3ecd4aa013b6368b52c1e5907e47fe7ec858658835a1e7fb195

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 110b6294396bc0a447648627479c9320f095c2034c0537f687592e0f58622638
MD5 9ececb6f98f9ce01dcacc010b21ec0f4
BLAKE2b-256 12be1293e9ed820532b28800c4def8b30f972472864b06def9bdd3a04ae72352

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6c5b32875646cb7f60c193ade99b2e4b124f19583492115293cd00f6fb198b17
MD5 f25551e3ccc25b29e994c6eb9358d46a
BLAKE2b-256 5cab4782ad61518ff21a6d280859a2ebf95a97644765b135becfdd5016551001

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 94baaeea0b4f8632a6da69348b1e741043eba18d4e3088d674d3f76586b6223d
MD5 867769d498855b07ed730531d2b2103e
BLAKE2b-256 b4a974d433794f1a496652d5c6c3dd8a7f0ea4b89445106a034131764c867522

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b01153c7466d0bad48fba77a303d5a768e66f24b763853469f47220b3de4661
MD5 5e4f94f29f72e7c5f733d8ec307fca8d
BLAKE2b-256 e279147729336be225c48bcf6fad4d4043d31f50b9e84dc789b6cd00efb34500

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcf79b686962d7bec458a0babc904cb4fa319808805e036b9d5a531ee6b9b835
MD5 cba9f038104bac1bc60935425cc2c29b
BLAKE2b-256 401cdf36c12506f345145200eca743d5fd7525fdca405c78419fa5aa1635887e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd5fa6e3c6e0333051c1f3a49f0807b3366f4131c8d6ac8c3e05fd0d0ce3755c
MD5 8040157af1df07fcbd15eff4d460b98a
BLAKE2b-256 ca66aca839c3312f27e37b9c32ff0e1d3e0d13d9e9a7223265cd0114d101818f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1318d42610c26dcd68bd3279a1bf9e3605377260867c9a8ed22eafc1bd93a7c
MD5 410c1cc1523698484b500366e99aa793
BLAKE2b-256 b09bf95b96f20fba46c6d877ad30f41b67be92b1797e22b1b6a143c5d74e8485

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c12d180b17a22d107c8747de9c68d0b9c1d15dcda5445ff9bf9f4ccfb67c3e16
MD5 e15aee2291ea8bd3ae5101e65439e77b
BLAKE2b-256 fe2bb7fb39e63fb4375c491e1c28264f56286ab2dfbe4918324ab765a50c53f3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e9125377fa3d21a8abd4fbdbcf1c27be73e8b1850f0b61b5b711364bf3b59db
MD5 a7af3d003528b971f41fa50475e3605c
BLAKE2b-256 57e9a65810d38638e8ee005fa30116829994fd4ca7a487d2ec6fe6728e04db29

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4eebf6c93af0ae866c22b403a84747580bb5c10f0d7b51c82a87f25405d4dcb
MD5 476b33a4902823302ab152df81e0582c
BLAKE2b-256 f9b5cbf4b1333b616d9808d8af9447b738c092f75c814e2509716d881992f369

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 696a79018ef989bf1c9abd9005841cee18005ccad4748bad8a4c274c47b6241a
MD5 ccf2bb8b0643b4542a8be00a0391ca4e
BLAKE2b-256 3dbc38bd009fef815f2f2fa726019f0cc16ae600b7521acccb18a7afae63dbb6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ccf68e30b80e903f2309f90a438dbd640dd98e878eeb5ad361a288051ee5b75c
MD5 da0ff35f5a0ef60c37980834e337f0c1
BLAKE2b-256 6d5de8dd3ffca0c27a397bbe9b3581b10195e7b8e5a6f587dd5d1a81b04c30a2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.7-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 857.2 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 3665b92e788578c3bb334bd5b5fa7ee1a84bafd68be438e3110861d1578c63a0
MD5 ba3c64aa17f04166e4a378c1b62a6f5a
BLAKE2b-256 cdb69c245f360e14edf99acd9e51db9ac48082d7e4d8d70f49418638b18a05a3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6f83221db5755b8f34222e40607d87f1176a8d5d4dbda4a55a0f0b67d588a69c
MD5 973921ba136fba1289db558e5a41855e
BLAKE2b-256 ec3be890c17abc3edabfbd2b1e97079fd0253b22fba9c24fee230043ae850a23

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 22589c0b8ccc6c391ce7f776c93a8c92c96ab8d34e1a19f1bd2b12a235332632
MD5 438a4a673d203cde0b9228a9e00e25c8
BLAKE2b-256 7cdda4b32eebb59cbbe8324c02b4e62ea9078fc8824b12e61cccdcfff6d16147

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 111a20a3c090cf244d9406e60500b6c34b2375ba3a5009e2b38fd806fe38e337
MD5 f694eb2b085f21106e17f4a4aef63eef
BLAKE2b-256 4255f3a33a6552e7ac5127cffd636e30f5921c64e727bd132ece2766e5c32851

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9b6a5de507b9be6de688dae40143b656f7a93b10995fb8bd90deb555e7875c60
MD5 746a1b07ddb06685166db7f3498c2e10
BLAKE2b-256 c53f10ad0261d64618c94342f636ee542a8c53cb8641d0aa1a8bfada1026a80a

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 13d8675a1fa7e2b19650ca7ef9a6ec01391d4bb12ab9e0793e8eb024538b4a34
MD5 1e8d4bad58ebcd8d74d9c8ca84e85229
BLAKE2b-256 8e102ef827fefebdd1791c35f159e986ce93f8dd795d4b5f9d5388ed6d2a8d75

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5551d68264c1bb6943f542da83a4dc8940ede52c5847ef158698799cc28d14f5
MD5 7ed5bb531adaa5260831cfc9b974a236
BLAKE2b-256 3eb94064d402bda7fd6f7010b526428fd79db7e7c0d13fb3aa95b99b3b823ad9

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b23806fbdd6b510ba9ac93bb72d503066263b0fba44b71b835be9f063a84025f
MD5 e60e52d40e815c97cccbfc8986411dd1
BLAKE2b-256 8a264e90e224222262ef5e33d8291a1efe8879697aff65e24ad24668dfe08cf9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3dcfbe7266e74a707173a12a7b355a531f2dcfbdb32f09468e664330da14874
MD5 cdd0a2145f05eccd9c1aa2bf5c9c687a
BLAKE2b-256 99d6f4cb710404119f593853d0c640d4be4a8be2a1be95e8f19eda7543a8bdd2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9dc86aa6b29d174713c5f4caac35ffb7f232e3e649113e8d13812b35ab078228
MD5 177b83995846617facbd7ec3796c7f86
BLAKE2b-256 40148007269014a59368e16818d485801bd8bbca8e740ded7e03d5fce6c6c488

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ecc24af7f905f3d6efb371a01680116ffea8d64e266618fb9ad1602a9b4f7934
MD5 eade42cf0becc60372f4a70973fc064c
BLAKE2b-256 e688d4ce5babbfea3592578f09fa17aea4a984cc63568fdbd9789b82db4a7bcd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 364587827d7cbd41afa0782adc2d2d19e3f07d355b0750a02a8e33ad27a9c368
MD5 2234fdaa6ff9025fccbf00ae1c6fb358
BLAKE2b-256 d4697061b40b11b36abdf63d5472039f78d660d85887b533736183e4b4c763fa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d5262383634626eb45c536017204b8163a03bc43bda880cf1bdd7885db9a163
MD5 a4e7a1bf888a5846da6dda1d89a282a4
BLAKE2b-256 18dc40281e84d3410675565c7526e6cb5adb9c5be64f8708558056feae516917

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2957fdad10bb83b1982b02deb3604a3f6911a5e545f518b59c741086f92d152
MD5 2dc716343625c682c6ab02f9e20e0edc
BLAKE2b-256 04a094c40ba5e25cf8da46993d21b4d9d90b7216e9358010b3b6a0b46a5c01d3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97f2ce529d2a70a60c290f6ab269a2bbf1d3b47b9724dccc84339b85f7afb044
MD5 422e9bb3262ca7c7a238a4d95f8b0189
BLAKE2b-256 b8b91ac8a9ddceec1b2e1c5bb4c2eb82d1ec33f547f8f6eba460f17610624724

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f847fb0fbfb72482b1c05c59cbb275c58a55b73708a7f77a83f8035ee3c86497
MD5 76fd1323b289964873c0f0c29a73a737
BLAKE2b-256 3fd5374a13f0cc15870e413bbd2c86969b4bdc0b1964e7bd94ded5d43e8df4e4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.7-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9030e7238c0df51aed5c9c5ed8eee2bdd47a2ae788e562c1454af2851c3d1906
MD5 45b495e348821d969ff294115e0dbb47
BLAKE2b-256 bb0b9627e3d060a31819679f1d079127d78474d5c096015065195a20add18f6b

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b702de95666a1f7d5c6b47eacadfe2d2794af3742d63d2134767d13e5d1c713
MD5 42cbed9d403627b02910ec03e85160b2
BLAKE2b-256 da2bc6baa4e3f080956d337d1b9f47f407d4e14918869e132c2377101689ec50

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 36dd6e820379c37a1ffefc8a52b648758e867cd9d78ee5b5dc0c9a6a10145378
MD5 eebf2b8b077af834f127fab85d195254
BLAKE2b-256 0e93d1b56bec18bbee21dee58a6f5be8e03ffce58f1d3f7fda512079c266bd8b

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3171653212218a162540a3c8eb8ae7d3dcc8548540b69eaecaf3b47c14d89c90
MD5 a4502e40a7fec521a0d3c4be9c87b0f3
BLAKE2b-256 8ba89a57e2526c445072a1e3f92d96705ed31ac934d503988d6e2ed050e5eaa4

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90db86fa196eecf96cb6db09f1083912ea945c50c57188039392d810d0b784e1
MD5 318f0a541d4c70a177ebaf8bbf156a70
BLAKE2b-256 ec119544c0e3ad560e9aba499a6c464becd8a8b8d8fdcff39cbf4cb7869dce71

See more details on using hashes here.

Provenance

File details

Details for the file rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d95751f505a301af1aaf086c19f34536056d6c8efa91b2240de532a3db57b543
MD5 c7564ae5ce8e15297b7a163b364e9bae
BLAKE2b-256 eee45bc24ec17a21d8c4fc31fd1c52c686c0608b85fee1d8083c558148e87abf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 948dcee7aaa1cd14358b2a7ef08bf0be42bf89049c3a906669874a715fc2c937
MD5 c1e34cadd46aa04adcd82d31e3e473c3
BLAKE2b-256 ff3510238f238d4d99eb288b339c620afe4454c920e012f9fa5381f9de9e83be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ff196996240db7075f62c7bc4506f40a3c80cd4ae3ab0e79ac6892283a90859
MD5 a6261ec0f048e8a4bfca2533f3cd625b
BLAKE2b-256 a986bde7284ae7e8cf9e1b0883f8ab1485f3a58bd20d56c76791a248bfb2b599

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a93cd834b3c315ab437f0565ee3a2f42dd33768dc885ccbabf9710b131cf70d2
MD5 5d3ca1bf4042daba772da1fc13c57380
BLAKE2b-256 c5806e828187f3878615993a030049e9ba2dc3e674dbcc2ae3f30948b64cbb46

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd9360e30041690912525a210e48a897b49b230768cc8af1c702e5395690464f
MD5 9ca320fa93736dd947bf71eed64b9e82
BLAKE2b-256 ac0bbb04f9d3f2d57370f2a26f6b0d65668acb8e33c77cc129f1ba8d89a439bb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d1eff95362f993b0276fd3839aee48625b09aac8938bb0c23b40d219cba5dc5
MD5 1778ebdea84f1b3082c1548bfeb8d83e
BLAKE2b-256 ac2edf994e8549a306f2a7f836fbd0aaf8229d0f902c9ba79dd629d87579f348

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2379e0b2578ad3ac7004f223251550f08bca873ff76c169b09410ec562ad78d8
MD5 9aff4a815b747c598a96dc7437b5845f
BLAKE2b-256 dde39d2737351f86a07f2e1c661acae6002aa57ebed3ef5183f95bc8ee161a97

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fbda3dd68d8b28ccb20ffb6f756fefd9b5ba570a772bedd7643ed441f5793308
MD5 bcf49ab2efa25ae8e9e158a071cb5a7b
BLAKE2b-256 6fec2d64841a6c04e835f5a8638ae5187e7057d6247106880ae0046d37b41f80

See more details on using hashes here.

Provenance

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