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.6

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.6.tar.gz (1.6 MB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

rapidfuzz-3.9.6-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.6-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.6-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.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

rapidfuzz-3.9.6-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.6-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.6-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.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

rapidfuzz-3.9.6-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.6-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.6-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.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-3.9.6-cp313-cp313-win_arm64.whl (848.8 kB view details)

Uploaded CPython 3.13 Windows ARM64

rapidfuzz-3.9.6-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

rapidfuzz-3.9.6-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.6-cp313-cp313-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

rapidfuzz-3.9.6-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.6-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.6-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.6-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.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

rapidfuzz-3.9.6-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.6-cp312-cp312-win_arm64.whl (849.9 kB view details)

Uploaded CPython 3.12 Windows ARM64

rapidfuzz-3.9.6-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

rapidfuzz-3.9.6-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.6-cp312-cp312-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rapidfuzz-3.9.6-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.6-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.6-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.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rapidfuzz-3.9.6-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.6-cp311-cp311-win_arm64.whl (855.1 kB view details)

Uploaded CPython 3.11 Windows ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

rapidfuzz-3.9.6-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.6-cp311-cp311-musllinux_1_2_s390x.whl (3.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rapidfuzz-3.9.6-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.6-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.6-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.6-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.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rapidfuzz-3.9.6-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.6-cp310-cp310-win_arm64.whl (854.0 kB view details)

Uploaded CPython 3.10 Windows ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

rapidfuzz-3.9.6-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.6-cp310-cp310-musllinux_1_2_s390x.whl (3.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rapidfuzz-3.9.6-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.6-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.6-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.6-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.6-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.6-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rapidfuzz-3.9.6-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.6-cp39-cp39-win_arm64.whl (855.9 kB view details)

Uploaded CPython 3.9 Windows ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

rapidfuzz-3.9.6-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.6-cp39-cp39-musllinux_1_2_s390x.whl (3.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rapidfuzz-3.9.6-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.6-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.6-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.6-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.6-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.6-cp39-cp39-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rapidfuzz-3.9.6-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.6-cp38-cp38-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

rapidfuzz-3.9.6-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.6-cp38-cp38-musllinux_1_2_s390x.whl (3.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rapidfuzz-3.9.6-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.6-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.6-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.6-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.6-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.6-cp38-cp38-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rapidfuzz-3.9.6-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.6.tar.gz.

File metadata

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

File hashes

Hashes for rapidfuzz-3.9.6.tar.gz
Algorithm Hash digest
SHA256 5cf2a7d621e4515fee84722e93563bf77ff2cbe832a77a48b81f88f9e23b9e8d
MD5 7fe9087cbb4a794afa2711fac239f8f3
BLAKE2b-256 e8b0e0756b5efe826c1bdf6442777cc924b41258685dcf372ee77399cc10408e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1a5bd6401bb489e14cbb5981c378d53ede850b7cc84b2464cad606149cc4e17d
MD5 76486a63f627e38d06208c67bb0d0940
BLAKE2b-256 ba555a7368d9b3dd29d6197bb85a5d2ee9a52c97ebdc407dd4ff80f4c1e6f3ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dcb7d9afd740370a897c15da61d3d57a8d54738d7c764a99cedb5f746d6a003
MD5 2f2a6990230e50cdac74601833d75c4d
BLAKE2b-256 048ec2d0207d64bacdf70b08f12ee999f77a54a9e3c9b206419324c0fc98b360

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2116fa1fbff21fa52cd46f3cfcb1e193ba1d65d81f8b6e123193451cd3d6c15e
MD5 c88bab939cec78cc37eeee4565fefd03
BLAKE2b-256 8a8049217e7cb613cd87e5533ccafc1e3a3f4d923b56d9b4393be85aea48c88f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8ca862927a0b05bd825e46ddf82d0724ea44b07d898ef639386530bf9b40f15
MD5 17c789ec079bbd9ad12cb3a34ed3f3b1
BLAKE2b-256 f50b97e8bb06346a2beefe5e8f894e144093fa73f315ae5b17642e5e3a83e28f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 680dc78a5f889d3b89f74824b89fe357f49f88ad10d2c121e9c3ad37bac1e4eb
MD5 e235b7ea492e2839f27d428b31bfe7ec
BLAKE2b-256 622e9d2382cbc540095bc3fb54651b4d9da2e3e09a5551f43701fc981351cd84

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a65c2f63218ea2dedd56fc56361035e189ca123bd9c9ce63a9bef6f99540d681
MD5 5c46fa8aa851e18f68ba1a31e9cc1b60
BLAKE2b-256 f631d8879c68fc90745438425bf2f3578493fb00c786942884b4e2d735c034ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 51be6ab5b1d5bb32abd39718f2a5e3835502e026a8272d139ead295c224a6f5e
MD5 71908329bbd73b026b1451d2cfdd8f81
BLAKE2b-256 5b184101149644c22d13f2231c76a47cbe52db3dfd58fb074db4ed65002cf95b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a657eee4b94668faf1fa2703bdd803654303f7e468eb9ba10a664d867ed9e779
MD5 0ba5432351b08fdccb28b1fa926937a7
BLAKE2b-256 2e837bbc17f944729de67f84aa050ce79976ef0d72f3594558f7ae6fbbde2aed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6dc37f601865e8407e3a8037ffbc3afe0b0f837b2146f7632bd29d087385babe
MD5 59da1cffb1aee335c1f204dca11a5e38
BLAKE2b-256 bf638c3caf0564ee9dc22b9ee36d966555e84401392b52d4b7510ae5eb0cd383

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4bb5ff2bd48132ed5e7fbb8f619885facb2e023759f2519a448b2c18afe07e5d
MD5 8aa08e80788d69c7ce71b62b23e1c066
BLAKE2b-256 6d6a091ea1959757a83f31190c8eaf77f3db23948aead3a37f4dbe7d0f750224

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0cb157162f0cdd62e538c7bd298ff669847fc43a96422811d5ab933f4c16c3a
MD5 ce8fc8539915020a21f79a1ae95abd97
BLAKE2b-256 b4d9ec4a2a91093f54aa54379086e077078762e9908aaf4786932d1775269133

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9e53c72d08f0e9c6e4a369e52df5971f311305b4487690c62e8dd0846770260c
MD5 ae85425d84c772b3f0e0afd50981de38
BLAKE2b-256 1d0bab462e022edcd214123354a757532e7ed069f9bc54e73c149c1144605dfd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2185e8e29809b97ad22a7f99281d1669a89bdf5fa1ef4ef1feca36924e675367
MD5 70677ce685b501d88958ab7a0695d2bd
BLAKE2b-256 6146fcc328a9fd4fca52246a05d03aaddcba102eacddfbd41f9398a9f9a09ff3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 101bd2df438861a005ed47c032631b7857dfcdb17b82beeeb410307983aac61d
MD5 0b159586814108a97f84b0e195fbbcbd
BLAKE2b-256 ef8cb9c350c1330cc8c882d363cf9600c6233d91d18cdfb1a077a3c456c766b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af26ebd3714224fbf9bebbc27bdbac14f334c15f5d7043699cd694635050d6ca
MD5 c4813633f4f3def9a71d5e0ad597f052
BLAKE2b-256 1548e18489b017990076cf619f1e6d6e857cf630ccd1dc5057f5a7642eb85062

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 715aeaabafba2709b9dd91acb2a44bad59d60b4616ef90c08f4d4402a3bbca60
MD5 210714c23cb9b3e00deda04ab9cd60e9
BLAKE2b-256 b28ff52caa6fd06c8668cc43fba0dae7f78e4f941a37eae577a53dd815c9df31

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88144f5f52ae977df9352029488326afadd7a7f42c6779d486d1f82d43b2b1f2
MD5 f3d47ce4a915f5c048d846f84e528e44
BLAKE2b-256 a873aac10edc815220c358cf33cb44b50631138aeefe54fb149fb0cbe9fa2783

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 29fda70b9d03e29df6fc45cc27cbcc235534b1b0b2900e0a3ae0b43022aaeef5
MD5 6651aa0bd76bbff6677f5e56596f9c6b
BLAKE2b-256 24f91528bb1314a8c8eff9c56c9e48fa367b2480fbda64c6501d0d3ba5df4cfc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 58b4ce83f223605c358ae37e7a2d19a41b96aa65b1fede99cc664c9053af89ac
MD5 ebc020c355da92e481690e1312760699
BLAKE2b-256 d8266eda9e43dd5b0833feb4cf9ea0ad4e46b07c4811d8b8815a8517b379c640

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 59ee78f2ecd53fef8454909cda7400fe2cfcd820f62b8a5d4dfe930102268054
MD5 1428874b802d84c400564a1cb4dec0ef
BLAKE2b-256 fe09d25939dfe7eea5e4a474dfebd60073acd792621d42a9ffe7534627c8ad26

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.6-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.4

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 71cc168c305a4445109cd0d4925406f6e66bcb48fde99a1835387c58af4ecfe9
MD5 cf772403fb14b5eaa7550c5e636eb74c
BLAKE2b-256 7f3be593d8f0b7bb2c1cb00514552056a4b61000d2d8f4fd24e016fdd2e1afe1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16122ae448bc89e2bea9d81ce6cb0f751e4e07da39bd1e70b95cae2493857853
MD5 815027e49b7f9ca0d498ac5feace4a8f
BLAKE2b-256 162b15f6df84ef774457fd77a80436154e8fc6c903bfc997490a275fca84adda

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b6b8dd4af6324fc325d9483bec75ecf9be33e590928c9202d408e4eafff6a0a6
MD5 77e32c15d89a837ef9fee255cfd90b5f
BLAKE2b-256 a2907c36906695b216bf489cd234d95e5e00f06f976054ce3c441085a5ae650f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6c4550d0db4931f5ebe9f0678916d1b06f06f5a99ba0b8a48b9457fd8959a7d4
MD5 5bb1926a84c907fad6184bc8d9e1e72d
BLAKE2b-256 71502f866735f788d565a2ed6d113a54a410b4a412b46cb399e3ae466e72730f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d97d3c9d209d5c30172baea5966f2129e8a198fec4a1aeb2f92abb6e82a2edb1
MD5 8ff03c34531afe43a9f31fb3e0ab44a7
BLAKE2b-256 57fa0d6573980251fb63147a35be8f4fae962d79ebbe4b675fdaf0cf16726aa0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ece873c093aedd87fc07c2a7e333d52e458dc177016afa1edaf157e82b6914d8
MD5 da86e1eaee650fe8b6ec79e4efcebdb1
BLAKE2b-256 95a5f5e1fc00485f45ed17803f91f7877fa07b0fb4006ff42cfebd7355ad1bdc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3eda91832201b86e3b70835f91522587725bec329ec68f2f7faf5124091e5ca7
MD5 468faaf64b37b95592a0ce749a5348e3
BLAKE2b-256 5347089d2d8a27c4e90dd4dfb532d31bc873537fcc479874e9909a9018156855

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0308b2ad161daf502908a6e21a57c78ded0258eba9a8f5e2545e2dafca312507
MD5 105d7ba75719fb89b5f435363c7985f3
BLAKE2b-256 8fb4afde433a48fb18f5d7ddf144ffb2b0b674f3f176a2aca89f2ea06fe54d4f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1611199f178793ca9a060c99b284e11f6d7d124998191f1cace9a0245334d219
MD5 ea874a20170b839ba7cf85f6c642c0b5
BLAKE2b-256 8058ce20051fbbac74bc369d4ab3f450683ebf70e456474d6172ba9b6f6164f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce2bce52b5c150878e558a0418c2b637fb3dbb6eb38e4eb27d24aa839920483e
MD5 244bceff00f8c29b0de8ccf4fc0a729a
BLAKE2b-256 7567e111c7a11eafd70677d6688c36d93b54a43783119b16ee5591589a110ff9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74720c3f24597f76c7c3e2c4abdff55f1664f4766ff5b28aeaa689f8ffba5fab
MD5 54fe48931f0ac9c37f6c994e071f0c55
BLAKE2b-256 bde9a37db9a3674b210d6ef21b15c66eb1585125d553ed5b73f6481dadf932c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10f06139142ecde67078ebc9a745965446132b998f9feebffd71acdf218acfcc
MD5 8637fbd54b11a2427efed1daaa45217d
BLAKE2b-256 6ff37b7f8ddb80562722c6cb86a3396ad6945c0003f36addbca610782fe7e113

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 83a5ac6547a9d6eedaa212975cb8f2ce2aa07e6e30833b40e54a52b9f9999aa4
MD5 95164f73825a7f68e44e0f4d359541f6
BLAKE2b-256 d1de83b660bb054a3bd85f033a2521ba99ae65e49b95f3b18745cfcf68a94ae7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 43bb27a57c29dc5fa754496ba6a1a508480d21ae99ac0d19597646c16407e9f3
MD5 f6b802600f5b1839159eb3488f4ad4ef
BLAKE2b-256 8a81249ed13ce5cee9c9aa9c69656e2d78ed240534d478ebaada04930513820a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0d21fc3c0ca507a1180152a6dbd129ebaef48facde3f943db5c1055b6e6be56a
MD5 6056d763b705dd0c196023925c996b89
BLAKE2b-256 7b81bfd28ed4a5638b594985988921d19fd716f119dde93703d8545c1bcb8e7e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.6-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.4

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5eb1a9272ca71bc72be5415c2fa8448a6302ea4578e181bb7da9db855b367df0
MD5 957970e90b4070ca5af47c84e023fd9d
BLAKE2b-256 07255de7013daac2eb7b18bc0123fa5d83ddbe5508673b14b9ca7e32f2be3cbe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7496f53d40560a58964207b52586783633f371683834a8f719d6d965d223a2eb
MD5 32b0da9c4eb018cede01d6a6aaa7524a
BLAKE2b-256 d8787008dcd6701cc84eb74fad6c743f03c33c7f41516d15a313fcd759b2d614

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cc7a0d4b2cb166bc46d02c8c9f7551cde8e2f3c9789df3827309433ee9771163
MD5 3cb012825f404f18f320132056eae5ea
BLAKE2b-256 4fee82004bf9274566711b134bb2628bf878046a9212c798bd10f0138ad6cca9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ccd1763b608fb4629a0b08f00b3c099d6395e67c14e619f6341b2c8429c2f310
MD5 02798a3c758f56ace41f5b7d723bc2c4
BLAKE2b-256 3f0d52cd49cafb91fc0cc4e75e3beab7b16fffe62a6c66d5fb5d336b2deacda5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f5702828c10768f9281180a7ff8597da1e5002803e1304e9519dd0f06d79a85
MD5 d352090d511f88949debc58fd0b4ea2d
BLAKE2b-256 74b3b02d002e643ec5f97278b6f04c2293b9b678249220f253b7e649a4e0df3a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91aaee4c94cb45930684f583ffc4e7c01a52b46610971cede33586cf8a04a12e
MD5 5167973dd0a176cc818a664c3e5c6579
BLAKE2b-256 e1456c9bbba66a5ada5679c0705375068337c2573a940443868cbcba5c909c07

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d2c2fe19e392dbc22695b6c3b2510527e2b774647e79936bbde49db7742d6f1
MD5 bf1c5058629e34bf9c99bdeef682e7ec
BLAKE2b-256 15300a4bc8b641e2374475c03d6c6ec6568303ac2070698c067c690daefd9b8f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7a03da59b6c7c97e657dd5cd4bcaab5fe4a2affd8193958d6f4d938bee36679
MD5 6f62be95ee6d4647537b0aa44353e97f
BLAKE2b-256 0e427ee9c15087d6b7146e73e4650bfb8ddbbe2161a9edbe2b44be9ffb68a2f1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15146301b32e6e3d2b7e8146db1a26747919d8b13690c7f83a4cb5dc111b3a08
MD5 5f8d9673f63cb91904bc29aa4be03f56
BLAKE2b-256 0aa31b5a2bb95e5b532fe571b6b0c8c4cf35893e748eac5cac2ae7d3c0f41d47

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d66c247c2d3bb7a9b60567c395a15a929d0ebcc5f4ceedb55bfa202c38c6e0c
MD5 3c6b83b39daba523c236e0dfde00ee97
BLAKE2b-256 b97a29bf00754308ba43eb6f95988445b86953b29bc780164f8961d0c3d67b89

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 708fb675de0f47b9635d1cc6fbbf80d52cb710d0a1abbfae5c84c46e3abbddc3
MD5 f0f9cfcd6cbf16a081fc78636a0c15f4
BLAKE2b-256 759251d74bdf539475d8c71df76da73d4609231254ac2499beb24efa78667b14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee2d8355c7343c631a03e57540ea06e8717c19ecf5ff64ea07e0498f7f161457
MD5 89da4db3c8641e632c8c75cebfb56a48
BLAKE2b-256 22a58c14e41bcdea3be343764de6ad464ff87300352f8e2d01064bf0f1809e9d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70591b28b218fff351b88cdd7f2359a01a71f9f7f5a2e465ce3715ed4b3c422b
MD5 80ed8c6d94f6b2b464f18d91e6179089
BLAKE2b-256 dff4e8175a4ad862ede4caa8dd287d187d12db2f4eb426b00b030b1cb7f4d2dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8b4afea244102332973377fddbe54ce844d0916e1c67a5123432291717f32ffa
MD5 b262e87ebf5bdc41024db14f216ed1da
BLAKE2b-256 53925014563b1e8f901f983f96606c6982ff4ed286a8ae4335b67012a4a50cf9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 59c4a61fab676d37329fc3a671618a461bfeef53a4d0b8b12e3bc24a14e166f8
MD5 6c7d33b3a515a8c93fcd98858ec24781
BLAKE2b-256 aabbcdd512d40f8ea67692deee6b0da4f7235c6a0f9e126fdded32b62c5d91fe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.6-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.4

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3e910cf08944da381159587709daaad9e59d8ff7bca1f788d15928f3c3d49c2a
MD5 7e78ddcd3512c9fd6beb5aa84a927725
BLAKE2b-256 377bd355309d5aa606dd91d91501a64c87db32e3d75b775950a19df8ec0288f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c18897c95c0a288347e29537b63608a8f63a5c3cb6da258ac46fcf89155e723e
MD5 01712340a762be507eec717c8d5734f0
BLAKE2b-256 5f412d285edb31f718c81e3433a56142d5e606ba20d0997fcf57774042f79850

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 82c9722b7dfaa71e8b61f8c89fed0482567fb69178e139fe4151fc71ed7df782
MD5 fa2de795764771edc43baf1b44fe7f96
BLAKE2b-256 59f2a3db1b31dc80d906528e03d213a9f9bd8c44547cb1cbf9a3c59649058c2e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5b0c9b227ee0076fb2d58301c505bb837a290ae99ee628beacdb719f0626d749
MD5 b9b770c851f78991f299ee3a3722a14c
BLAKE2b-256 df6247401ac22299f70a8231f7e7421b3f804cd716f6a24521ef172dec7afe01

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed443a2062460f44c0346cb9d269b586496b808c2419bbd6057f54061c9b9c75
MD5 c953353550a87b95240dcaae058cd68a
BLAKE2b-256 9d4040b75226e0b45ba0212b8ce19996b8970fd3de4748341f6bdd0302b54856

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d214e063bffa13e3b771520b74f674b22d309b5720d4df9918ff3e0c0f037720
MD5 aeb970832dcab30c037ab081ddaf82ed
BLAKE2b-256 cc3f9a941793dbc419a9e9aad742d8057c8440f191ab3758d1ce2c12e9f27ccd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63daaeeea76da17fa0bbe7fb05cba8ed8064bb1a0edf8360636557f8b6511961
MD5 08f17fb85bb8cedfecf1ff3d187214fe
BLAKE2b-256 e98588f1fd986714887ad4448c7b321c85b9aa5842df9deb606bcdfdfc35fae6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68d9cffe710b67f1969cf996983608cee4490521d96ea91d16bd7ea5dc80ea98
MD5 e658b2ea2e6441ffae50378eddec340e
BLAKE2b-256 325fc47c511e2b174e80ea1091722359b4db7900e4987a4bcacffae6f27237c0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6792f66d59b86ccfad5e247f2912e255c85c575789acdbad8e7f561412ffed8a
MD5 7acf83e6b9ad04e448a15d556430808c
BLAKE2b-256 d2cd3e555024d9168dbd732e919fb0f7d05c3f6809d6ed86042383efeb6f98a0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1e037fb89f714a220f68f902fc6300ab7a33349f3ce8ffae668c3b3a40b0b06
MD5 752afeb4baaf3b32d5f0ef455e532e1a
BLAKE2b-256 6a3e254fd9e2ce895480bc43a5a11a35d4825b11918d694c959cc0e214d842a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42b70500bca460264b8141d8040caee22e9cf0418c5388104ff0c73fb69ee28f
MD5 bf2dea207b5291bdd66133668dafd0cc
BLAKE2b-256 28d68dd267f4377d8bf1698d891a28c24d417499724355f6a3541c0b5ab1c35d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f93a2f13038700bd245b927c46a2017db3dcd4d4ff94687d74b5123689b873b
MD5 196ee105ae4d1384972c1eb0123982cc
BLAKE2b-256 55231d0c51c01fbff028ff5746a388edd610a591e76153fca72f6f7e68b5fc14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52e4675f642fbc85632f691b67115a243cd4d2a47bdcc4a3d9a79e784518ff97
MD5 2ec541d61417156dd5a44f1c77726ea9
BLAKE2b-256 5e555ba0016fe8fba98d8ff55832dd7d79f2d6b93fe27be7863ccf3f79366d76

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e03fdf0e74f346ed7e798135df5f2a0fb8d6b96582b00ebef202dcf2171e1d1d
MD5 5899250b8138bd1c509bf073204b466b
BLAKE2b-256 7b47afbd8fecb1980e617bf40dfcb692366affdb9426c54bcb73b04fef23dcb6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 248f6d2612e661e2b5f9a22bbd5862a1600e720da7bb6ad8a55bb1548cdfa423
MD5 58f57c19798e1a07171aa9c98a430682
BLAKE2b-256 5f2b8c71a3224cf19faf9f8cc0a2c6ef1c307d2ee7925a54bd897a433c275311

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.6-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.4

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 24d473d00d23a30a85802b502b417a7f5126019c3beec91a6739fe7b95388b24
MD5 1bd5f0ec7180b20a35728b16e967b793
BLAKE2b-256 9a8d67728c98bbdb79dffef56f843262de1b5859d23c22a1ada77d56604b9ab4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6f0256cb27b6a0fb2e1918477d1b56473cd04acfa245376a342e7c15806a396
MD5 b10c1e8f6a86d533e4ab0a36151efffd
BLAKE2b-256 242715e61bcc0f08c34ffa4c5b510885a24180432eb694fa3ac2b5d32be48a64

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1c59f1c1507b7a557cf3c410c76e91f097460da7d97e51c985343798e9df7a3c
MD5 37e6f680e094b433d16e9860a4c42d2e
BLAKE2b-256 a83122f425bff05e5bd340c82407402bf8557af61e607c0013430c83c61dfd21

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 624fbe96115fb39addafa288d583b5493bc76dab1d34d0ebba9987d6871afdf9
MD5 c1afb00548f3588869d0246b2e27d3fb
BLAKE2b-256 af04059eaefa39649441cb3dead2a73bbc9b5ab9c43749638720fbf2e048f299

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6ebb910a702e41641e1e1dada3843bc11ba9107a33c98daef6945a885a40a07
MD5 7497a778838955005e4bbd6b77c72ae8
BLAKE2b-256 57147d4ead5d208d3e952b1139f716a0eb1836b27e1782e739c90c1fec498542

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3a4244f65dbc3580b1275480118c3763f9dc29fc3dd96610560cb5e140a4d4a
MD5 5f54d965b2ff43d7257b7ea40d610a13
BLAKE2b-256 9e9ab8b7047c8d646604f96aec7f42e0f1b39e6fb2eb482c9b39e25b68eee468

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb5a514064e02585b1cc09da2fe406a6dc1a7e5f3e92dd4f27c53e5f1465ec81
MD5 0475fca86d10d86fd8eb8e0c67e7cca9
BLAKE2b-256 47d738a2e899be0463a0e59e36f7b0f1df1d60fc9fb9f073ac967686fce5c762

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9196a51d0ec5eaaaf5bca54a85b7b1e666fc944c332f68e6427503af9fb8c49e
MD5 3c0cad41548b72f29f199d1ceee28a3f
BLAKE2b-256 dbe584a43d330eabcfc76e200a1bce2cc0324431ea49dc532e6a0ebb3a5226b6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f982e1aafb4bd8207a5e073b1efef9e68a984e91330e1bbf364f9ed157ed83f0
MD5 4c447074658a0a46856ad7276f569639
BLAKE2b-256 f036e3965b204e956ddc43bf0103311d1b2b2c45748fc1bd5ee0aafd14f6fd9e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4e86c2b3827fa6169ad6e7d4b790ce02a20acefb8b78d92fa4249589bbc7a2c
MD5 7c8ab1a1ac77baf3748e636957bb65ff
BLAKE2b-256 e7d053c210e49bc26eeeefd64fac7a04132199cc87c7c5ae4d350741bed09010

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c3f9fc060160507b2704f7d1491bd58453d69689b580cbc85289335b14fe8ca
MD5 760b47a72f3f9eff5c0b0330dbe9abc6
BLAKE2b-256 777475f8f2c0b83037439a0a72a9c86dc873305d7a841c34fef08648e9aef3f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3deff6ab7017ed21b9aec5874a07ad13e6b2a688af055837f88b743c7bfd947
MD5 913bc4e6e2fc59797240c04a83a9ff82
BLAKE2b-256 7377b7d375fb786033203cb70cdbdd8f48d79d4e30d59cc71e612a848466c861

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7ed0d0b9c85720f0ae33ac5efc8dc3f60c1489dad5c29d735fbdf2f66f0431f
MD5 a0a81439c096e677d612b970aa13a193
BLAKE2b-256 1fe69cdee68310a54a3ca568e9291a4b43d6a413f9ef3182f98849fe86a167ed

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 d41c00ded0e22e9dba88ff23ebe0dc9d2a5f21ba2f88e185ea7374461e61daa9
MD5 5e28118e596ded04225ee3b47c3352e8
BLAKE2b-256 504abf8858cdb298a2a5390e3ac09ef02c638a86f3e60d5ab8f454ced912e33e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.6-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.4

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c608fcba8b14d86c04cb56b203fed31a96e8a1ebb4ce99e7b70313c5bf8cf497
MD5 1f3a605e1b0ef566970c4cce99318748
BLAKE2b-256 5b8480d0304a9dbb80fa3955cf41f36f307b39022f8c60a32c1979e7bb5f6cdf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.6-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.4

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 89acbf728b764421036c173a10ada436ecca22999851cdc01d0aa904c70d362d
MD5 4f05ff0239450b137867ee27366f62b4
BLAKE2b-256 40c104ef2422a31de6902e3d4a4a12bbce386d97758cbc95ccf5b9d5377b0efa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c256fa95d29cbe5aa717db790b231a9a5b49e5983d50dc9df29d364a1db5e35b
MD5 32ee8015c40f6d1dd80a4e61213c499a
BLAKE2b-256 a5658a6072c9da9a8b4d2ca689b08d0dc82d8f70beede5b469535e114b3f4e3e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fa742ec60bec53c5a211632cf1d31b9eb5a3c80f1371a46a23ac25a1fa2ab209
MD5 f4aa3e33b9832469870196e08e972fe2
BLAKE2b-256 7e725047ec4ed3603b72b8063ba62b3d0fec266de9d54f6c3715b7559477ec72

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d50acc0e9d67e4ba7a004a14c42d1b1e8b6ca1c515692746f4f8e7948c673167
MD5 9d3ed6271e51ba4a97aa0b575c1918ae
BLAKE2b-256 2d23d615520eb696eb4c0525b58593efe94d3a42d0660dd619bab2121471e3a6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e535a114fa575bc143e175e4ca386a467ec8c42909eff500f5f0f13dc84e3e0
MD5 e3157f666c766e482ea593837cc17a0b
BLAKE2b-256 04c0939731b759e43c3fbe8522c9d798581b441fcdf9591315a0cf411c53e82f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6254c50f15bc2fcc33cb93a95a81b702d9e6590f432a7f7822b8c7aba9ae288
MD5 bbd7c68b4e5de1c19e9a62b842397ab6
BLAKE2b-256 1f3a87a4741fdac544b2153d530f35b9d25c312184d9cbd0ae38ea2b12068c99

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68bc7621843d8e9a7fd1b1a32729465bf94b47b6fb307d906da168413331f8d6
MD5 bc5148c58869481d39c2e4265f7a2c32
BLAKE2b-256 92b0007af3beac061d14ada1133629f62ef2c449a4f11fe54d649b36d0b868e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1629698e68f47609a73bf9e73a6da3a4cac20bc710529215cbdf111ab603665b
MD5 ddd50ad00f2bbd34ad463660aab55b69
BLAKE2b-256 0e87520aaad36a2f0dc50f3108b0bc8f4d7eeb4327b03869af896253a04b17a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad9462aa2be9f60b540c19a083471fdf28e7cf6434f068b631525b5e6251b35e
MD5 fe09356d2c2e2e6d9546b8d679184a92
BLAKE2b-256 c7f7334f54e16ec36049b2f6db996faded2202e7b7536b77ed893d2ec92d3381

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3f42504bdc8d770987fc3d99964766d42b2a03e4d5b0f891decdd256236bae0
MD5 ba17f21fee1c4285dd80b3a1892e414f
BLAKE2b-256 fa3391e4815af4f737e17fa289b22573fe9b4e7507dcaa17cc404b2c23789fc7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16a6c7997cb5927ced6f617122eb116ba514ec6b6f60f4803e7925ef55158891
MD5 957fbe4d3e7a0826ef7f33e7f4047802
BLAKE2b-256 6b1a4f81fb98e1df43b38cb1e3a0d0f185366d3a2ba4119ef34e6e5dbad9561d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b40ff76ee19b03ebf10a0a87938f86814996a822786c41c3312d251b7927849
MD5 d1396bd3702de067cd1d2e8b366354a2
BLAKE2b-256 db0c7e06b0e513b1fd3a26242484ec7335b02c9e45cdd79e3574ccf4732a02ae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 efa674b407424553024522159296690d99d6e6b1192cafe99ca84592faff16b4
MD5 ca6c260bec2ff0f2327b655dfa797f90
BLAKE2b-256 f209db0d88b05ae419436e805db93de9abb8ad5e4402e3aef54d35b74c734089

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.6-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.4

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 af440e36b828922256d0b4d79443bf2cbe5515fc4b0e9e96017ec789b36bb9fc
MD5 0e7a7a5d514554006719ffc0eddd4162
BLAKE2b-256 7aaa6ddf49d4c5ae416d65179702a863582e607c1ce536729a82b183a3a776fe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: rapidfuzz-3.9.6-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.4

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 aed13e5edacb0ecadcc304cc66e93e7e77ff24f059c9792ee602c0381808e10c
MD5 008cb1ea67879162f26b62423c6f7683
BLAKE2b-256 9f301e7d1883547a9d0dd2382f4da76ce0e5cccbf24e65d5dc979295a87a2cce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 29146cb7a1bf69c87e928b31bffa54f066cb65639d073b36e1425f98cccdebc6
MD5 81f2ee899cade36e981a8143f76fb0ee
BLAKE2b-256 9e550682c619816f63c40a1d4cd49fc026a2ac357e32fd888ea0d5221d6b1157

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 32848dfe54391636b84cda1823fd23e5a6b1dbb8be0e9a1d80e4ee9903820994
MD5 8bbddfd23dd7e818791b950ba0f6a0d8
BLAKE2b-256 b54ddc0614c9fe0afbe4fd6016e610e65d9617d73a574f7d5a90ce29a3385cc0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 50b2fb55d7ed58c66d49c9f954acd8fc4a3f0e9fd0ff708299bd8abb68238d0e
MD5 141de9e178c997e395bac34d2c76cc19
BLAKE2b-256 310ff46f75c3d41e9817114579892edbc2ff00dd3f6cb151408d60c63950f9a8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6edd3cd7c4aa8c68c716d349f531bd5011f2ca49ddade216bb4429460151559f
MD5 9f67ae14bb781788d9c1157043144fee
BLAKE2b-256 a4b699f168e931cf1785c5d844199a940bd39ad9895f86e20374adda05f2e98e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a96b52c9f26857bf009e270dcd829381e7a634f7ddd585fa29b87d4c82146d9
MD5 10ee3b3be1e0eead421d541842eb4a28
BLAKE2b-256 b9d4d0d3662bbf2483a7615d8d788e6642e50bbb57a960d17a216b3f7d83a5e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0542c036cb6acf24edd2c9e0411a67d7ba71e29e4d3001a082466b86fc34ff30
MD5 ae7caaaa8f5ff730b890ba00a4697310
BLAKE2b-256 e9805ef6bfe721f678cddcbeea23ded6519456540618a3962023a1055c91af8b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c0488b1c273be39e109ff885ccac0448b2fa74dea4c4dc676bcf756c15f16d6
MD5 d6daadbd896eeb04699934957740dec6
BLAKE2b-256 9c353b1cec0a0f5b52e82e5aec102e07ed8db87d636055ced9398ac9d5d9e683

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a4bec4956e06b170ca896ba055d08d4c457dac745548172443982956a80e118
MD5 0dc2a39a9a862eb29421921f1b77ef96
BLAKE2b-256 a43fb6e88a40fc93f3349fb8979d3e0b2fd72651ed594f1a38f057f28b6ac182

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8502ccdea9084d54b6f737d96a3b60a84e3afed9d016686dc979b49cdac71613
MD5 f1c80f6225a63fb771dbc76a9571c9dc
BLAKE2b-256 b9aa88e69a3cc929e5b9bddbdf8b4bbeed19d421c884368793468dd198a02708

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39ffe48ffbeedf78d120ddfb9d583f2ca906712159a4e9c3c743c9f33e7b1775
MD5 d3468b11cf8b5def7e3c0cd7e3c5f2b6
BLAKE2b-256 82cfed562410b857fe1d8eaa2d38c8ac44e2d4436b35c27b3fee008f86ace3aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9ed7ad9adb68d0fe63a156fe752bbf5f1403ed66961551e749641af2874da92
MD5 d2d3db0f8838a9769113e033875f3a5f
BLAKE2b-256 86b61c323c0c1136129e148886ce9e7fa2fc11e42900ebf6c72024834b586ad6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.9.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f469dbc9c4aeaac7dd005992af74b7dff94aa56a3ea063ce64e4b3e6736dd2f
MD5 c12c20634641465b22f21e938e248426
BLAKE2b-256 58db778d7937e1e5d0a8b0fba00cf0efe9fc2a7641870c4be1a40462de81318b

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