Skip to main content

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 with whichever license you might want to choose for your project.
  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.

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rapidfuzz-3.14.6-pp311-pypy311_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPyWindows x86-64

rapidfuzz-3.14.6-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rapidfuzz-3.14.6-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidfuzz-3.14.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

rapidfuzz-3.14.6-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

rapidfuzz-3.14.6-cp315-cp315t-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15tWindows ARM64

rapidfuzz-3.14.6-cp315-cp315t-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.15tWindows x86-64

rapidfuzz-3.14.6-cp315-cp315t-win32.whl (2.0 MB view details)

Uploaded CPython 3.15tWindows x86

rapidfuzz-3.14.6-cp315-cp315t-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

rapidfuzz-3.14.6-cp315-cp315t-musllinux_1_2_riscv64.whl (2.5 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

rapidfuzz-3.14.6-cp315-cp315t-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

rapidfuzz-3.14.6-cp315-cp315t-manylinux_2_39_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.39+ riscv64

rapidfuzz-3.14.6-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rapidfuzz-3.14.6-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidfuzz-3.14.6-cp315-cp315t-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

rapidfuzz-3.14.6-cp315-cp315t-macosx_10_15_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

rapidfuzz-3.14.6-cp315-cp315-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15Windows ARM64

rapidfuzz-3.14.6-cp315-cp315-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.15Windows x86-64

rapidfuzz-3.14.6-cp315-cp315-win32.whl (1.9 MB view details)

Uploaded CPython 3.15Windows x86

rapidfuzz-3.14.6-cp315-cp315-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

rapidfuzz-3.14.6-cp315-cp315-musllinux_1_2_riscv64.whl (2.5 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

rapidfuzz-3.14.6-cp315-cp315-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

rapidfuzz-3.14.6-cp315-cp315-manylinux_2_39_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.39+ riscv64

rapidfuzz-3.14.6-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rapidfuzz-3.14.6-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidfuzz-3.14.6-cp315-cp315-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

rapidfuzz-3.14.6-cp315-cp315-macosx_10_15_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

rapidfuzz-3.14.6-cp314-cp314t-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14tWindows ARM64

rapidfuzz-3.14.6-cp314-cp314t-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.14tWindows x86-64

rapidfuzz-3.14.6-cp314-cp314t-win32.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows x86

rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_riscv64.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_39_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ riscv64

rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ s390xmanylinux: glibc 2.28+ s390x

rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ppc64lemanylinux: glibc 2.28+ ppc64le

rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidfuzz-3.14.6-cp314-cp314t-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rapidfuzz-3.14.6-cp314-cp314t-macosx_10_15_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

rapidfuzz-3.14.6-cp314-cp314-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows ARM64

rapidfuzz-3.14.6-cp314-cp314-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86-64

rapidfuzz-3.14.6-cp314-cp314-win32.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86

rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_riscv64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rapidfuzz-3.14.6-cp314-cp314-manylinux_2_39_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ riscv64

rapidfuzz-3.14.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rapidfuzz-3.14.6-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ s390xmanylinux: glibc 2.28+ s390x

rapidfuzz-3.14.6-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ppc64lemanylinux: glibc 2.28+ ppc64le

rapidfuzz-3.14.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidfuzz-3.14.6-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rapidfuzz-3.14.6-cp314-cp314-macosx_10_15_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

rapidfuzz-3.14.6-cp313-cp313-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

rapidfuzz-3.14.6-cp313-cp313-win32.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86

rapidfuzz-3.14.6-cp313-cp313-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

rapidfuzz-3.14.6-cp313-cp313-musllinux_1_2_riscv64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rapidfuzz-3.14.6-cp313-cp313-manylinux_2_39_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ riscv64

rapidfuzz-3.14.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rapidfuzz-3.14.6-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ s390xmanylinux: glibc 2.28+ s390x

rapidfuzz-3.14.6-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ppc64lemanylinux: glibc 2.28+ ppc64le

rapidfuzz-3.14.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidfuzz-3.14.6-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

rapidfuzz-3.14.6-cp312-cp312-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

rapidfuzz-3.14.6-cp312-cp312-win32.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86

rapidfuzz-3.14.6-cp312-cp312-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

rapidfuzz-3.14.6-cp312-cp312-musllinux_1_2_riscv64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rapidfuzz-3.14.6-cp312-cp312-manylinux_2_39_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ riscv64

rapidfuzz-3.14.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rapidfuzz-3.14.6-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ s390xmanylinux: glibc 2.28+ s390x

rapidfuzz-3.14.6-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ppc64lemanylinux: glibc 2.28+ ppc64le

rapidfuzz-3.14.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidfuzz-3.14.6-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rapidfuzz-3.14.6-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rapidfuzz-3.14.6-cp311-cp311-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_riscv64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rapidfuzz-3.14.6-cp311-cp311-manylinux_2_39_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ riscv64

rapidfuzz-3.14.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rapidfuzz-3.14.6-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ s390xmanylinux: glibc 2.28+ s390x

rapidfuzz-3.14.6-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ppc64lemanylinux: glibc 2.28+ ppc64le

rapidfuzz-3.14.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidfuzz-3.14.6-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rapidfuzz-3.14.6-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-3.14.6.tar.gz
  • Upload date:
  • Size: 58.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6.tar.gz
Algorithm Hash digest
SHA256 e13a8160d017b499ec7a2fa9d0ce1ae2e7377080815785819f966fb235d4eb60
MD5 ecb711eaa4f2baeff0a5c3d74ece6759
BLAKE2b-256 1897226c43b7b5d957bc3840ed52ea99eed261f99834c4619be7a4742cbaeafa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6.tar.gz:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1e6911e3a14971719ddc35af98f181d2e5369ab273a5a3488ab7685d23c31ad5
MD5 5e9307a364ff0958174100565922368b
BLAKE2b-256 5556799accc99532ecaaa2c1d04c7e594d6bb8f1afdddc327389c61196741cb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-pp311-pypy311_pp73-win_amd64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b42536675c930cb76b7998bfc4d8e59cb35d8df47f2103020265743b6b2ccd2a
MD5 94614c3882542bfd0ae4380f1e600b5d
BLAKE2b-256 ea0b375ebdfc4ca149e23793bb6b72461954ec64d0acbb826030787e88b90ff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2fc748d1fde4109e5d0dab27f1e61f53b3136a235dfee5a4fb579da44808b6a
MD5 bad517f1e4d675b50f32ac954560ce0d
BLAKE2b-256 4869a573c2e5e1b1a4f19e98a8fb3f6a792a44f5b8a067895a2654890ffd35a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1398bd2c197b79bfc40b615999fd3599dc60265fdd5b59edc18156ae048c4cde
MD5 cc6234bce2c6151f549c4baa54a6cca5
BLAKE2b-256 7c00a1a077f5cf90c9fa13b28c721f931529ad02748d418d7750590a388832a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0844066900cdc9909ce4ab4fb5ba1d8e0c021252d770f2ea476f3443df1d22ef
MD5 f64726adafc759657e1410708d86628e
BLAKE2b-256 089a7d4949406e2d391e160ead12036bba05e7c90e09bba77a782d33e7e6a1b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315t-win_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 07c7aa0b1e4b9999a54f9e73317d6743ff85442c8ef7b7fbbe6b190fd37d9e75
MD5 55ce791ed17640b894d1390e890fc4f9
BLAKE2b-256 fb04a0b0e6324b6384d1ab40feb4d16400af3b3101d38cbd15957edd9d17cbe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315t-win_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.6-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 3d502769263318690d4f6638b08483979d1b88cdc7c6f087482eea935fde4031
MD5 486787453ad3b3f400862165781c23bb
BLAKE2b-256 210e8356ca3e190e2bcced9b80e374d95b0925c4716b51e65720a55399983f41

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315t-win_amd64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315t-win32.whl.

File metadata

  • Download URL: rapidfuzz-3.14.6-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 15da2b258908eb38853c1a6a58a1d09d9aad9c721e03a68c8ba691cd31dff739
MD5 bd317b7e127d509e8bf8dd5f85b6e08e
BLAKE2b-256 927d943a04a134a5d333c00d3a77169226defef5e081be9219a765afc176dda0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315t-win32.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40d0cd9c82083aeb30bae8dee265ae571e6748d0d7b222ddd777f33d95a3b712
MD5 1d3c3d8edef5ea5b42f339f67179014d
BLAKE2b-256 a92d70aacf6cb577470bdd6f06890d25ecb7ee8a56baa07b114d5877a93ecedd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 635f242f4bdf05d1477fa409815bd73e5f78896773ace84997bc472ffeef685f
MD5 2a7298a089791fe7463a235a6f43820c
BLAKE2b-256 7fc14d89214a453215d897cc76cd6e13937c8ea5dc9f8217993fe2b1eeaf39a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315t-musllinux_1_2_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36a37ddc729c33618d89fa221d3333b9b956dc38cf15d31301e6169d962399a3
MD5 23c59f5dbe791a7eb4dcb44e7bd75ae7
BLAKE2b-256 9d8eefc98b0cfb540f41661f6a8bf21b67807e221102e5e8fb1585233b39a3bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315t-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 40c2753e2d4dc96b25f8a25adc23ab0bb6cfd8bc8125a1753ac4b037d6ff6511
MD5 c3bc5d4795324fe05e6b427cf70520cb
BLAKE2b-256 8d01abd33d0b7595643e598802a07466af388f1560d7b7cb70f442cc292f4067

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315t-manylinux_2_39_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2bc7af3a699371a941aac86dc8a79ac92adeb3c2add2aab02230e76068a0029e
MD5 286be17b636fec4322243864573f2636
BLAKE2b-256 e6122a1fe61cb9f0ac0dc4166bcb016df695047e75251481a197d47aa5ce8ea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8683fefdd3484d64a191b3efbc8cbe9162c3eac891fd62d0a1b70e117ffcd434
MD5 2340eacddf2fb3345b72598628a69028
BLAKE2b-256 de3f982b2f1b2a16c46d4598829b6b2d7185921f146d5893630f917cb9d27542

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eab2d4680d7f438dbb1d484b187d59a943edea9c83f792c764a0c148a417a60a
MD5 11b7360d5f515ed0c3f1d3ff21e67339
BLAKE2b-256 754abe587adefd9539a89cc6016bac44d222cda4c8212856759c82501fd89e4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dd89abd1c4b3776c3471a817216830bd275441c8344bbda5d51a3bffe1e0fbdf
MD5 9fc3db3abf2b933662d42c792d8004c5
BLAKE2b-256 ae976dd7f10756eb703e11803c5c838191c2151112f632e29f5eacb1ed1cf86c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.6-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 c9d135fb93709d707577da8a7a8ffc7283525a5b6d0ce55aa3724be5639ed65b
MD5 57880ecda0a9eff1124b3e0011f088a3
BLAKE2b-256 06bac6966904eb7b3d1c6344e6c29245447625d156b11e9757b29adc3cb46037

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315-win_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.6-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 d4c5adb921b67dd79ffc0a14f92b9f8df3d012e66aab340b154ed87014229d93
MD5 e755d803a4ce3f533488ef7e15be6c20
BLAKE2b-256 5142640e1bd16422392fbb6394def1f7dfd4d05bd13c986016ce4b3f91295430

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315-win_amd64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315-win32.whl.

File metadata

  • Download URL: rapidfuzz-3.14.6-cp315-cp315-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 7ca0f498bf771a87557e6d8b573aa6cf3daded58ae2eaeb6973618ce3e1615ad
MD5 3935b84b59d280562bd0a3c7c13b1b17
BLAKE2b-256 bebe2b67b32988cb96b7fa9461ff3436e275716df00f7817212ed0a1c1779062

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315-win32.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 189ce2bf14938bfa003fbbe7e6da7584ed6ebbc4c560686255dbc20e2829f470
MD5 d8a111fb31592ee631f7813ff74bdedc
BLAKE2b-256 40290bbd158eeddf05e5b581f89bf7c9f0cf330953579309b3806862d360a454

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bf4fb0f19c9dfce7a908c3e309753602ce3edb83bb74e9ff997e278765bf89df
MD5 c5f9baf2c60a7c9581e6107590502554
BLAKE2b-256 c3819c522c26cfe1909714eb840856106f1e419a44c4e0de034a3eeb873da00b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315-musllinux_1_2_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c53a269bdbd71ffbc856d3db9e609478251001ee272507578fa838bc2bd421fe
MD5 0594d124acf59a79d6dd63323731b942
BLAKE2b-256 30755cfc0d1491e3c60a8669e8e2b78942c4f395cccabfb9c73bc8b209664e29

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fc950bb77105a2717d03d9f9c9e21e9ace7df2b8e864dd91edef7e32fa143be2
MD5 7b36e1b41ff38c8bfe0e7ea901987ba3
BLAKE2b-256 10e8da76d94af820707dcbfce224b635fb7c389c19525426c31645c97bedd601

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315-manylinux_2_39_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b82c21c30568e096ef2a9dda7d45c379e6141694e0472dac73bc4372ce13ccee
MD5 2b25be09b980b0d385b21728a79894d1
BLAKE2b-256 23a81830f07f7d3fcc56508135f130dbd24a917ddedb71107b04b2fbb33d5da9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cbe6a62f71fcbca72acbf5a30e53380600369f257f951d664d81d30c0c598595
MD5 97246b71571613a90e2ce90f5265a4b4
BLAKE2b-256 a7f3444d939f4b6c3c86f67083cb792978f3f42c28f944e66e9152e910cd212a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aaa83b633d877a05d549d2073629134998d1b3b9dbc114873d3ff4277984979f
MD5 61655144f278b7608d46ab1f8fff022b
BLAKE2b-256 d21a7b88284d85b4f7dfdf3038263e11eb11871472aa32902c7063a5fdd7a7c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bc3d74d18543ddfbc8babe1faadb19927a7999fd0d01181cce9e721c14c36ab6
MD5 21d8d24b234185e5f8b03dab8dd23db7
BLAKE2b-256 1037b015bf56f88e9b18b81ad462f610e70cc1145a9df39154fcbe7ddf9f8868

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b056ce19eaea2ea70c6a6fb387a605ca2af8979de5b9d507597e8012820ddb14
MD5 ba2ff7fc8f79a5fa373a033ba470c4ae
BLAKE2b-256 15e5c38c19fbc1de82980e05bd3adbe1dc7f3dd0680e38e868646082317572d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-win_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.6-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 cab4a932cec02d09471e2c9f1434049ef5bfe1f6e646ff10939c222dc610ad60
MD5 cad5a48185c82812c376fb9412842d17
BLAKE2b-256 4a15d2c20c57b357ec4157e74a197b3f622dbda0b2a82d1fc708ed7b262758f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-win_amd64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-win32.whl.

File metadata

  • Download URL: rapidfuzz-3.14.6-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 66ece6f5e2586c742fc3e0b8487e06783d27c6c24adcdcfdd7f306afbd8b5737
MD5 36e9b250605a534a80e9406846ac123f
BLAKE2b-256 12cef4b355f05b17bdb3a56f1c5e9bd864965dbb810f93d1b5d6044ecfcbd42d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-win32.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36710ff214b7a8049d26a9c81d99948026593cacb47663742c4119072b651ecd
MD5 67f1432c74e7e14b8ecb1022d5783609
BLAKE2b-256 cebd05e48e21b1dd722b41c0cb8ab8867996f6e0c0a1b46e42921ace09799b0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e221366e24709b9d41d5f9cc99053b04cfc575d429e956a82cfbc4c4e9e8860a
MD5 d707d34f910b47e8dfda7e87e1411591
BLAKE2b-256 830fd2067e23d9b7fb2aeb70a6b36173f0b2376635483f670aa5c47f17e55135

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_s390x.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 76a122fc573df603deb5fb827df31bb5efbd0826b50bb7aeca8535a6e8c70cf9
MD5 0dae07cddaff88f1de84654aa4764946
BLAKE2b-256 3f26962fc396a56ec37146eb5331e55ae53d19dc564fd921f49a6d524c83ee05

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5667c56fdc902fa1e12449b5c042e8b1c7e9b30040db20c396fbdb3d0a750866
MD5 93d381a4bb92fc3dd58ff1e61fb936a3
BLAKE2b-256 19bbdb04caff7bf26718e97592f8cc007988ef18eb088ebb0742addcb25f0819

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 408b2e8e8c1ac71b57f0923cf964d6932539725e07b69e70ec66f22c4a403891
MD5 5cfd4764f97f08925f5e0316fa657bae
BLAKE2b-256 d0997eeaf6f7f42d4ec8b90db54c73f7c2a727e208b4db6fd5ea807e87133b9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f35723caef8cc31b6f34209708fb172fc88bab0077c12e9b36bbb829baaf1b16
MD5 071ee30671259e5fa413cbfdbe7ef1a5
BLAKE2b-256 9109db64291ce5f11c0f79486b435b49f5dc66680f605077cb011d282bf767b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_39_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f9ad513e3a3e045b60b421d5cd3887ae0a33b38fc6c6db3ea5e27c0a2e0412c
MD5 01b96caa49b31918c97b951187ed439e
BLAKE2b-256 5e8007985e10b534dbdd48df0ddf2e42f9d27cf98dc44e09fe047fc4b38471f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ecb45d616002751b58914d5b7c2e66acd39e12242be12717a1258148a1b36526
MD5 2ef97f78ee0583bc7213862195d32f56
BLAKE2b-256 613467915218f5f84ec2cda57560d81425929b8ea97956eb31283bf95768fefc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 32352a3ed1aad9c097d31fd4f2eece3030169e2de3dedde7a2fadc2652b768ad
MD5 0a3a0902269e31d1abe0b45e3fb26be5
BLAKE2b-256 069ba9dba69d174b4436c115fcd877a67745d355a859109e0f59955c14577519

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc166efa4ca2fc9cc52e43784a54cbea95fc0e03e533f8266ef66b1c04c7cb76
MD5 7ef6fb4220ee546003d7260f9c21a5e2
BLAKE2b-256 4a8a1db5582d5c9684c57b1e292dc88d70177233b570e684fe30736140697658

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9989280902b9c4ecf7de95fbb906e94df0d8c047290ed315c7aa1760cec9b3de
MD5 b28781bfc8361c1a88676d3d5a423795
BLAKE2b-256 67dad46da45e393937509111d4affa4db794fb064341735cfdcffe1f5f13a78a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1b0a9546a7328d3cfc2f1385501db7c4c374fb566dc1a3b22ad56092846c0134
MD5 713dc5bbfed3f010583c6551599da035
BLAKE2b-256 23a4af0509bffac37645841e2a6b55a4c6c46f7b2fc0757610b0cba0cbcfa900

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.6-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 10576c39fe6a49fad0bf1069371a77300ce166a3f36d2900d2d0bae08f297104
MD5 4669140f66ca111e9e1834a427c27a3f
BLAKE2b-256 13174add9d94236b37b6f857a3bf34d696b32304e3debc6830584fda95413ac6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-win_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 41ee893c4d7d0fb1844f6cad966540a833784b3bad2c239a0d80195d9231cef4
MD5 ac569a379780d73ea9f0e04b06c6407e
BLAKE2b-256 578d3ea3bf93a2f22858e1b1298126db35cbf58592d05571ca757f2f16071b17

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-win_amd64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-win32.whl.

File metadata

  • Download URL: rapidfuzz-3.14.6-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9e00c8c9500aacbc0c52b66369f54533ecbdcb92e5aa87e160fc8e293000a696
MD5 70c0ca2c06d434ce4eca86303d0b04e9
BLAKE2b-256 d0723bc42217fadd07ea0ff9d249cc8001d6f285197c253db95d3a03aac8c254

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-win32.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17081a0e904c12bb4ed49619a2bbb6528f6af00fe850e7ace22487bfd2aea455
MD5 7dbd78894cc7aa598280cc1907e064fc
BLAKE2b-256 5de9fd9a160699b72b6857551642fe109a1d0a86b06b7ecc0d2b4bbecbc6b61b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 44f1cddbc2010700e2d88063d0ab64183efe2578d9b52770ce1cd283dda230c5
MD5 a9e311b7334007b4b032882ab42c7ffd
BLAKE2b-256 989043d80ba73fd297c744f7fe0a949af2a610b4b9be96688799c3e73d002b13

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_s390x.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 178557c7a50c8c8d65369ede7f3d845bf23590a951c9a368caf166b105d58cf3
MD5 177f99f770325cb945368a39f7a434b8
BLAKE2b-256 5d92a01444687bb9a5a2679aa71325c227760e9c475cd02054b45fd8b219cb0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9080a730fdcf3cb8a07464c90f9cf40c1b4ffc73a8375b56a8898aba619dda30
MD5 d717f49bd196cc9f152123f7b456f8d7
BLAKE2b-256 8fc31c2670ff528f7e625d7b552e7ebccd5c4dfdcb84dc08ee85d1bcc0cf1465

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63b0e84faec3c5706cae8ae51246ff103407d54efa32a615a548b7b67392ebcf
MD5 da1cf677dc2c160145c4c722b699d246
BLAKE2b-256 7df2757615ab88f7922b4477f9c93356c4512d744ea042e3e2b41554aab5ec1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 50cd6718bcda7ec5293635a9d0b3fb5906251013d3b99ca403ba9dfa8965f661
MD5 cba1ad7de03fa59870d9d41185afa463
BLAKE2b-256 5717fa4a0853979b885ff27488d9b80e7c5c985dfed74c5021ea95a3b54ddfad

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-manylinux_2_39_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08bc63b88048376114d1e66cf8fa6926495d03bb873eb87854fa74cf6848a70b
MD5 e982ea28f19c8a2e3dfaeb016f095424
BLAKE2b-256 6d561203b46cedefc3f0c16e10d87123fdd4ec0f2e209f65cd2bf221ec669217

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9ddb0ddf3ee616fdc066add4ef05639c5cf59b58d83779b6023488e5435f6191
MD5 455676f447da9a5e17a79efd2f1e9d2b
BLAKE2b-256 6ef0b456a74d8e33051b76b3f156cf4d55f717614d68b44b6312ae1f5d85b31d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dbe3378db3ae0453accf6196e2ed943f43d416cfacdcb8883db105bc14a0130f
MD5 b3f5a9f404a1a063f3aa81dc249b40e2
BLAKE2b-256 eb9a4a106d68033a81c24ab71129e3016cc6a27a668f30f436e729cae79048e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 760ee152af5e8b4d241a469f933ba2d7215248618ae19770fec7d80d9e149db6
MD5 a98115559c8d229df2437217a3bc7c30
BLAKE2b-256 4bae8e0f714c55180667d66346e46a3d680dd9809bcee1c5f03557a58b4f2ef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fa7d45388dec34a86038f2a38380f4922b74b5dd8991247f629a531178db10f
MD5 5084dc493972e964b0a416cc021e5859
BLAKE2b-256 3e28282e8c76b7dcc91e8f5aa1a594168d2136639f29dfda11384c6d36aabca0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0f8d6718e7edacdb16455c0472e7552fd518decb91e91250c58784fd6163f54f
MD5 f3967952a9d21512d386e113ce0b2305
BLAKE2b-256 679e8f862d2c8d80ee02633f1c9ce3e5121ce955e61efae24a61a05dd8a55fef

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: rapidfuzz-3.14.6-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a0c8bef04f6b1d9fdbb319576350af53151a64692d477db7d4844c220bc8e212
MD5 74f4bcff9db392cd1ad2f44bee40536e
BLAKE2b-256 055efc1da16b7f5245a7cc61dc08f70391ddaa1c538be1cf92681e7c763b77a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-win_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: rapidfuzz-3.14.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c69fb0e064d10c79908dcda76d7ca8ecdf8393a39acbb74dbad3f709f2c60e95
MD5 1cbabc7290793effd23e359d501f06b9
BLAKE2b-256 67f15b7c56737b9e5af7523ea79e90df732e9e4b2fa66fe2b333ee013ea6e541

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-win_amd64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: rapidfuzz-3.14.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4406b2517b85febcf9419f8fbcdfbd534872ea32608050f9562224933ca49a4c
MD5 cb057584d3755d8f25e4a69c0a35442b
BLAKE2b-256 b3d45845698661cb23bc7935536c28f5b86b2b3606de1f54722c1cfac39f170a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-win32.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 faebff9b9a287fb673f9a66465a7e03043601c9bfe5e71c3f91b3f2e7b8a37f6
MD5 2f57d1dee2f31141cd82abbfb546c01e
BLAKE2b-256 6d02f9bfff9e19e852b097afa837a8000592bcd714fe80827a76367b958771b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2cc9b5dde0ac89f7856f997ef917cac8e18e9dea473e9b3090a84bd600de6a91
MD5 f395644c1c3ee77be01d694b501f553e
BLAKE2b-256 0aea61f25272239ffef036eb3de1cc63372dfbff27193ca6f9f259d844f41a9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3c2444f5cd757ded2c3ba8b1734253b801b9b2ba9ecb3ee40cd505cebbfa7341
MD5 b9038684de17b5cd7c1b010d146b6672
BLAKE2b-256 c6a639fc42e45eb8ee70304862523b2e55cfbd2561c560dd8da1071015fa0ff0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 864658e5a10d249a2277374e800f944fe990346d70eea6f3a51b712b6dd01984
MD5 7e4199ea25d06104b285f88fb32e4b21
BLAKE2b-256 7af786ac824a7dd2b58729187cc31edebfa7805418f66d97d625010b7383d1de

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28e9ce91bd41a8203185887ef9b1541a891aa61c5c1cb2e46f1689cd4288d372
MD5 64433889829873deb3ea46c3923a90ee
BLAKE2b-256 2ef929b0f0d7764423573d35db4970dd573b324f4d41abe74d48adca542bcf79

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp313-cp313-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 11d76bb2b2cd038df708ae18f521fb3a50af477cc5a0dffce812da43a2f1beb3
MD5 b398a122a7bac51a9b9d388979356ca5
BLAKE2b-256 2576454acc3abfa6b958511d6e761f5a95e6c3128936a1eed4f23643c3267d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-manylinux_2_39_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6bb896f89a387219c671ebc33c4a636b222010cc3c5c83884a7fc8707bf0bbf9
MD5 f508c31decdf70c1996db72e2b7e90d4
BLAKE2b-256 70424bf9dc905df33bb4515895ff87f777d8df25a3617c0bf8f5d4716813d9ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 659b41570fcc6e02631ac361c47cc8db9ad26d740e4be2177df1b63005a49174
MD5 a99b5f966dfbe63087e4eb5ed12a6153
BLAKE2b-256 9fd7b9deea614b32e933e37d77eecf539ffe2b41c0a922a6fd759993865e7ee5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 abe92a70134c8b40790bb5c78b2a0a790686c26e83b6e99a456127ca141fe06a
MD5 4d51bf01351154c8c4ecda48d97bc8e3
BLAKE2b-256 6009a0a70c35996fa5225c8cddca38e2e594c82518aeefa08edb5d875ce0d82b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b34b7ee4f4f760690d6477163aabbec05705b5dd764cb6c3a6ba95aa1fffc42
MD5 22c690c321b2341dde67e72c97fc2f41
BLAKE2b-256 2b120958686418e596961642c41e9162906363649e70f6a12cfcff212f77ccb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bba0e9fad4dbea80227cde9cef3aaa984a934a84aec5f7505532e19838b14769
MD5 e55fb2409759542629a1cc4de77bf609
BLAKE2b-256 b9d35a56e26db79c00191bc7c5387a04dfa5b6326c2c81c468a976ee2aa8fa15

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 55dc9a55924b4ecfcf4a60a701bcfae7d9daf0129c41dc16139270d75be0996c
MD5 64b3b74db2e5ee94821be7e1a1eec214
BLAKE2b-256 a0ad4901a37256bc5027f3873ebd538b851349d7627d8aa2e91743c79b500f48

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: rapidfuzz-3.14.6-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 96bbd5a1c67d135334d02fae74f1d933fdda204ea03d544a59dab6b1cbfbf565
MD5 e8357779de23490c6698c3bba1baceb5
BLAKE2b-256 198d92217f0bc81ec458b4134ad53714b1be0cd3be21494227d73510b06467d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-win_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: rapidfuzz-3.14.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cfca36e4612208875e08611a779164b6cb8900ab8bbd3d82d4cfdfae9efbfac9
MD5 a4c8e10f75c863d9a6d4559fc7259063
BLAKE2b-256 84c412f01df5778227c8655fcd9b429fc001d43270f5d8d154edc9066bab1de3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-win_amd64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: rapidfuzz-3.14.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9e974251a9833791bc557b46f975676a56c2d58946f795cd2964b095496dfdcc
MD5 bdbf0e077484dfc99bd5d81f035070e7
BLAKE2b-256 078a995b4746c5bc1f561e64de1fa546927183fec7a369fe988716ef394a6d0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-win32.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9b0a501f37fb852c54469375baa25874246b3bbc8b6e21fb4cd186a32335868
MD5 d6240aaea5674902930166563e86b1d3
BLAKE2b-256 1999799ce99328ea97fe5d7510048ffea148b8ad4a838366f908691be52342a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f9d93e5424d1e4c103b57906b8beba270e680afda3ffdff7ea3bc6173b37083c
MD5 76dd759f0af2c3ee56e67c8a153ee3d4
BLAKE2b-256 2db28e9012968fab837babe1292edcbe1c972605f5b3af19c7fcac2ded731d39

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 35db2670f69fa3a4eb4741055581477ff92f2cf39e7e06f43ebcb97c2192fe7c
MD5 3924630206a9ee1ed3815f2b4c93a3c5
BLAKE2b-256 5daddb927fbe23f621dd292a6332a19822703084617c0281a88156a8c138d4e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d85a6e9180e53cde95c95dfeb05a2ac94ead4d9d803a8fd186d2719a678b8483
MD5 183d24910426f546a406b6e07de15a5f
BLAKE2b-256 4a73eaa1ca89f6ab12c0fe7f943226ce4ad1d2c67eb281dfd706279771fcff5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e06c6050c9bf6cd72305e3e6a293918b2b92cf2a067007585a53898624902e3c
MD5 d2d9fd5d5149798766e756d87a7cedc7
BLAKE2b-256 87ebb16f9f8cc255c8dc7c0d7712aa7e7c12a6fd85c8b2b56665f2a24222a941

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp312-cp312-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1d253e1fe44648242a0029b42ba23adf238ed2a7eb3d8ed0a03731a23f074ae0
MD5 11e560ec3ea90ae008aa013307ca9a75
BLAKE2b-256 593381ca664a15194b8b4a7e863b534e36c057724f9709c7781e9400d0edf024

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-manylinux_2_39_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0debb5f43662ea84d2f0228a0c7407ff647f9c3d13f3b692efff0cde46eebce0
MD5 f86ae60d76f329e004938d299eb8eb6f
BLAKE2b-256 13da49ab137f788a0e03e872d4c6b3d5c9c6c6bed4e4ccea381f69c4d186341b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f0d2d95c787d812b9106cfbcb94ad37a49f59df9287e00a75eb61afc246e8759
MD5 83f3c283e8df20bac43f4a5850bafc9b
BLAKE2b-256 a1f5bad528b6dfc608a48838508f270c79332ab05592703c9a46504ba95e9eab

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b22ef7e5e2341efc6216b666491022027b984e5aef93446064742f43f3c1d926
MD5 d8c1620a6f00ea2902bc92e574dee2ab
BLAKE2b-256 2f739218cf4424ab86260ee88ebdb612c5ed4d9bfd6b6d1e2f3c3bf4599d13bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 96a548979cd939b2c69358a0f5088a408524fbf7454f04bf90939fa971e64310
MD5 330e034cfee8da3a5e9c8ae4a323f10c
BLAKE2b-256 39e90794043c1a0af09cacdbb6a9e8b9b2079cdf73337e7c29b4a9f117415bb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1901414b135afb1a7f4b1ef940b95523b49cc5642aecf02af740f37567e98137
MD5 94b454b61a47cf549cc55f85aa430806
BLAKE2b-256 8b7210fc4e414eeed7963e2f1c315c731cb68196f0478cb244c78a21f5ce8662

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b46cecf27025e7a934332ade033e6a394da8a493f19fa1d835e3b2968a4ff7da
MD5 419ab1a1b9bd388fcde2790bf4be67e3
BLAKE2b-256 03d25a7646b185a61400220e4783d23461c1e864a9ee82ba443b18c218e2364b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: rapidfuzz-3.14.6-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 19c1cda8198cc57ffd4ff69a1c02cbe4297e9ca7b506bca03ec584da0a9fe1ff
MD5 fd27cffebd2b6e79bdcef44c853a5edb
BLAKE2b-256 10f7d0fb82451c1f0c701a742939120b32a092ac64bbacf8bf8fa21d61fc89e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-win_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: rapidfuzz-3.14.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 737a57cbca3e5c16decac86e205727bcd4b99c52f77c48bb44123078c5cd9a7a
MD5 e50af1eb310072b18d52277dd86a9820
BLAKE2b-256 4172638db21d63041ba17c4ed482a8cd1fe6dc4d90bc84b2a28aaccc2611ff84

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-win_amd64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: rapidfuzz-3.14.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/7.0.0 CPython/3.13.14

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 46ddb42af4cad3ac9d5e0c97ee1e687500c529a1ad5cbf9c949ce35f6edd4537
MD5 b8097629dd54a3e11cba10e56880a79c
BLAKE2b-256 1bf60a64983c5cf5b2ce8cf2ce4fc54ecd6b5ee6cd6a3af8b870657f28e31a07

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-win32.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d5b1cfa67bbe6239a643bca1d986f8a07e0a045286c674946e1648c132baa46
MD5 838c6b78aa3204702b2dd5708f59b1e6
BLAKE2b-256 4a1dd39dfc6cdc5c1d0452d4af563c678f2d5821f0df306bc3ab9502f3555690

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ad60297c001d15af24338440bca85dfee8710e9e3222733c906b33e89d986166
MD5 545144a6c34ebdfd30b74c497799bf84
BLAKE2b-256 6affae8ecf60ce25eab3accfe5a0c9ba6499b02c5e2ab03ee9defdf5475eb4e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 adb160a100f6122aa45c78d686e198da3f9e815d4182e0c4fe730608479f7f9c
MD5 6040f7926e839efe61f83810a5e38f95
BLAKE2b-256 95543ed4286d9ebf0b623b021970a46d7befa053dd09c85cd213bfb2ad2a0bbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 33a2f7faedaa3608c4876c41b448fc786d54e6cd7c6e732f7de466319b5a73c2
MD5 4a9bdc6c7b962d66e1af7a11fc1bde7a
BLAKE2b-256 f02e92acf13a03c45884aabe9d637c620f5b7806e56bd6f6f8d8016f95614722

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab4386ef7c2cb3e5eb46e815be49715dfcd301bb9f0a431f18da7aa0007de54f
MD5 a7db3b718db1cd1588bcc6285f318dcf
BLAKE2b-256 094e6394e8d79088124bf39a8103ac2ae166a3f62ffc67b51c4e869dfe38b6d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp311-cp311-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d6b58daadbe6974884ec39aee30cfb8bd2e126f8d03503f0069f70d5e84656a3
MD5 279ef98760202db770202419d7ddcf8a
BLAKE2b-256 d9cca8cdeaa64db2e914f3475551b19ea2a6187b5458b50eac707e10f1bcf9d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-manylinux_2_39_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d5d90bae3c6fb7ea34da968c9f23070e8440edb827a28b242580e0108110b14
MD5 f87030170554a1facc5c901680b7b720
BLAKE2b-256 11aea781ec62825990319483c82ef962b509e9ce22a67a9f97d63d70b2b175b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 eabaf06ca4896c59cfd9162480f0d37a15a2304ce2efe83ae2bbcfa1cf13534e
MD5 f32b4717b4b94e3f062421a0f8fd0b62
BLAKE2b-256 9fff556d3aefbd1f115fcda6bdf3ea578405fcaa44c233b525fda583943f3692

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 71a5bbfd00da1963f27dd1432068929694cf0e00007ae2b9c1ad2a187ec29a16
MD5 40f7d3f3283a2fc005696bd3f5cfd943
BLAKE2b-256 e37fc4824d855cb1f89f8db0802b7ae22705187be55e0ab2f9873b574a0a6713

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rapidfuzz-3.14.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3781cf14f9fc933d7198c2b25a8bbbd1a62b752746d5cd26de14957edc0e802f
MD5 292c1ddee382edd2a0dc4df8b1d948cd
BLAKE2b-256 de8f9cf3b552bb84911add3c86e014e8704d20ea4e274295686106dc010356ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c61cade182f130c9903231946bd1074539121721693a918e7b70382ae802bd8
MD5 4a7f1a40acb576fe4385260bf9c278b0
BLAKE2b-256 b98f17985248f0f651a518b543f802fa706b7810cbe96a434a5a9dc24f99b7d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c0dd0d765184366b6e213a8af3b0b3bb39dad27943bbfb193515d4ff96ac82a
MD5 3a6d64baa66df70fea405343cec91131
BLAKE2b-256 4c09144d6fcd84fadb124d282f727d197a92dc48ae279e80d4b7d23795ba164d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.6-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

3.14.6 This release

103 files

3.14.5

83 files

3.14.4

30 files

3.14.3

83 files

3.14.2

89 files

3.14.1

92 files

3.14.0

92 files

3.13.0

94 files

3.12.2

94 files

3.12.1

88 files

3.11.0

88 files

3.10.1

88 files

3.10.0

88 files

3.9.7

108 files

3.9.6

108 files

3.9.5

93 files

3.9.4

93 files

3.9.3

93 files

3.9.2

93 files

3.9.1

93 files

3.9.0

90 files

3.8.1

90 files

3.8.0

90 files

3.7.0

90 files

3.6.2

90 files

3.6.1

90 files

3.6.0

90 files

3.5.2

90 files

3.5.1

90 files

3.4.0

108 files

3.3.1

108 files

3.3.0

108 files

3.2.0

92 files

3.1.2

92 files

3.1.1

92 files

3.1.0

92 files

3.0.0

92 files

2.15.2

108 files

2.15.1

92 files

2.15.0

89 files

2.14.0

89 files

2.13.7

89 files

2.13.6

89 files

2.13.5

89 files

2.13.4

89 files

2.13.3

89 files

2.13.2

89 files

2.13.1

89 files

2.13.0

89 files

2.12.0

89 files

2.11.1

102 files

2.11.0

102 files

2.10.3

102 files

2.10.2

102 files

2.10.1

102 files

2.10.0

99 files

2.9.0

99 files

2.8.0

99 files

2.7.0

99 files

2.6.1

99 files

2.6.0

99 files

2.5.0

99 files

2.4.3

84 files

2.4.2

84 files

2.4.1

84 files

2.3.0

84 files

2.2.0

84 files

2.1.4

84 files

2.1.3

46 files

2.1.2

46 files

2.1.1

46 files

2.1.0

46 files

2.0.15

46 files

2.0.14

46 files

2.0.13

46 files

2.0.12

46 files

2.0.11

46 files

2.0.10

46 files

2.0.9

43 files

2.0.8

43 files

2.0.7

43 files

2.0.6

43 files

2.0.5

43 files

2.0.4

43 files

2.0.3

43 files

2.0.2

43 files

2.0.1

43 files

2.0.0

43 files

1.9.1

52 files

1.9.0

52 files

1.8.3

54 files

1.8.2

51 files

1.8.1

58 files

1.8.0

58 files

1.7.1

51 files

1.7.0

51 files

1.6.2

53 files

1.6.1

53 files

1.6.0

37 files

1.5.1

61 files

1.5.0

61 files

1.4.1

61 files

1.4.0

61 files

1.3.3

61 files

1.3.2

61 files

1.3.1

61 files

1.3.0

61 files

1.2.1

58 files

1.2.0

58 files

1.1.2

58 files

1.1.1

58 files

1.1.0

58 files

1.0.2

58 files

1.0.1

58 files

1.0.0

58 files

0.14.2

56 files

0.14.1

56 files

0.14.0

56 files

0.13.4

56 files

0.13.3

56 files

0.13.2

42 files

0.13.1

42 files

0.13.0

42 files

0.12.5

42 files

0.12.4

42 files

0.12.3

39 files

0.12.2

51 files

0.12.1

51 files

0.12.0

50 files

0.11.3

36 files

0.11.2

36 files

0.11.1

36 files

0.11.0

36 files

0.10.0

29 files

0.9.1

24 files

0.9.0

24 files

0.8.2

24 files

0.8.1

24 files

0.8.0

24 files

0.7.12

24 files

0.7.11

24 files

0.7.10

24 files

0.7.9

24 files

0.7.8

24 files

0.7.7

24 files

0.7.6

24 files

0.7.5

24 files

0.7.4

24 files

0.7.3

24 files

0.7.2

23 files

0.7.1

24 files

0.7.0

24 files

0.6.8

24 files

0.6.7

24 files

0.6.6

24 files

0.6.5

24 files

0.6.4

1 file

0.6.3

24 files

0.6.2

1 file

0.6.1

21 files

0.6.0

21 files

0.5.3

25 files

0.5.2

25 files

0.5.1

1 file

0.5.0

25 files

0.4.0

21 files

0.3.0

21 files

0.2.2

21 files

0.2.1

21 files

0.2.0

21 files

0.1.1

1 file

0.1.0

1 file

0.0.8

1 file

0.0.7

1 file

0.0.6

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page