Skip to main content

rapid fuzzy string matching

Project description

RapidFuzz

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

Continuous Integration PyPI package version Conda Version Python versions
Documentation Code Coverage GitHub license

DescriptionInstallationUsageLicense


Description

RapidFuzz is a fast string matching library for Python and C++, which is using the string similarity calculations from FuzzyWuzzy. However there are a couple of aspects that set RapidFuzz apart from FuzzyWuzzy:

  1. It is MIT licensed so it can be used with whichever License you might want to choose for your project, while you're forced to adopt the GPL license when using FuzzyWuzzy
  2. It provides many string_metrics like hamming or jaro_winkler, which are not included in FuzzyWuzzy
  3. It is mostly written in C++ and on top of this comes with a lot of Algorithmic improvements to make string matching even faster, while still providing the same results. For detailed benchmarks check the documentation
  4. Fixes multiple bugs in the partial_ratio implementation
  5. It can be largely used as a drop in replacement for fuzzywuzzy. However there are a couple API differences described here

Requirements

Installation

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

with pip

RapidFuzz can be installed with pip the following way:

pip install rapidfuzz

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

:heavy_multiplication_x:   failure "ImportError: DLL load failed"

If you run into this error on Windows the reason is most likely, that the Visual C++ 2019 redistributable is not installed, which is required to find C++ Libraries (The C++ 2019 version includes the 2015, 2017 and 2019 version).

with conda

RapidFuzz can be installed with conda:

conda install -c conda-forge rapidfuzz

from git

RapidFuzz can be installed directly from the source distribution by cloning the repository. This requires a C++17 capable compiler.

git clone --recursive https://github.com/rapidfuzz/rapidfuzz.git
cd rapidfuzz
pip install .

Usage

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

Scorers

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

Simple Ratio

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

Partial Ratio

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

Token Sort Ratio

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

Token Set Ratio

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

Weighted Ratio

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

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

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

Quick Ratio

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

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

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

Process

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

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

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

The full documentation of processors can be found here

Benchmark

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

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

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

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

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

Benchmark Scorer

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

cdist(samples, words, scorer=scorer)

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

Benchmark cdist

Support the project

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

Support the project through GitHub Sponsors or via PayPal:

.

License

RapidFuzz is licensed under the MIT license since I believe that everyone should be able to use it without being forced to adopt the GPL license. That's why the library is based on an older version of fuzzywuzzy that was MIT licensed as well. This old version of fuzzywuzzy can be found here.

Project details


Release history Release notifications | RSS feed

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.2.tar.gz (57.9 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.2-pp311-pypy311_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

rapidfuzz-3.14.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

rapidfuzz-3.14.2-cp314-cp314t-win_arm64.whl (851.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

rapidfuzz-3.14.2-cp314-cp314t-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14tWindows x86-64

rapidfuzz-3.14.2-cp314-cp314t-win32.whl (1.8 MB view details)

Uploaded CPython 3.14tWindows x86

rapidfuzz-3.14.2-cp314-cp314t-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

rapidfuzz-3.14.2-cp314-cp314-win_arm64.whl (833.5 kB view details)

Uploaded CPython 3.14Windows ARM64

rapidfuzz-3.14.2-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

rapidfuzz-3.14.2-cp314-cp314-win32.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86

rapidfuzz-3.14.2-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.2-cp314-cp314-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

rapidfuzz-3.14.2-cp314-cp314-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rapidfuzz-3.14.2-cp314-cp314-manylinux_2_31_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ ARMv7l

rapidfuzz-3.14.2-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.2-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (2.2 MB view details)

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

rapidfuzz-3.14.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rapidfuzz-3.14.2-cp314-cp314-macosx_10_15_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

rapidfuzz-3.14.2-cp313-cp313t-win_arm64.whl (829.9 kB view details)

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

rapidfuzz-3.14.2-cp313-cp313t-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

rapidfuzz-3.14.2-cp313-cp313-win_arm64.whl (810.8 kB view details)

Uploaded CPython 3.13Windows ARM64

rapidfuzz-3.14.2-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

rapidfuzz-3.14.2-cp313-cp313-win32.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

rapidfuzz-3.14.2-cp313-cp313-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rapidfuzz-3.14.2-cp313-cp313-manylinux_2_31_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ ARMv7l

rapidfuzz-3.14.2-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.2-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (2.2 MB view details)

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

rapidfuzz-3.14.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rapidfuzz-3.14.2-cp313-cp313-macosx_10_13_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

rapidfuzz-3.14.2-cp312-cp312-win_arm64.whl (811.2 kB view details)

Uploaded CPython 3.12Windows ARM64

rapidfuzz-3.14.2-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

rapidfuzz-3.14.2-cp312-cp312-win32.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

rapidfuzz-3.14.2-cp312-cp312-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rapidfuzz-3.14.2-cp312-cp312-manylinux_2_31_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ ARMv7l

rapidfuzz-3.14.2-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.2-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (2.2 MB view details)

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

rapidfuzz-3.14.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rapidfuzz-3.14.2-cp312-cp312-macosx_10_13_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rapidfuzz-3.14.2-cp311-cp311-win_arm64.whl (814.7 kB view details)

Uploaded CPython 3.11Windows ARM64

rapidfuzz-3.14.2-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

rapidfuzz-3.14.2-cp311-cp311-win32.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86

rapidfuzz-3.14.2-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.2-cp311-cp311-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

rapidfuzz-3.14.2-cp311-cp311-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rapidfuzz-3.14.2-cp311-cp311-manylinux_2_31_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ ARMv7l

rapidfuzz-3.14.2-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.2-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (2.2 MB view details)

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

rapidfuzz-3.14.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

rapidfuzz-3.14.2-cp310-cp310-win_arm64.whl (814.9 kB view details)

Uploaded CPython 3.10Windows ARM64

rapidfuzz-3.14.2-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

rapidfuzz-3.14.2-cp310-cp310-win32.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86

rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rapidfuzz-3.14.2-cp310-cp310-manylinux_2_31_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ ARMv7l

rapidfuzz-3.14.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

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

rapidfuzz-3.14.2-cp310-cp310-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (2.2 MB view details)

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

rapidfuzz-3.14.2-cp310-cp310-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

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

rapidfuzz-3.14.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

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

rapidfuzz-3.14.2-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rapidfuzz-3.14.2-cp310-cp310-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-3.14.2.tar.gz
  • Upload date:
  • Size: 57.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2.tar.gz
Algorithm Hash digest
SHA256 69bf91e66aeb84a104aea35e1b3f6b3aa606faaee6db1cfc76950f2a6a828a12
MD5 83dd19d553ddbcd47a987b8d4c044da5
BLAKE2b-256 152b4f3134df01e983fa4ce45f1a5e8015a70f71283f5300f0d08f15e9e7e0b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2.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.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f558bc2ee3a0bb5d7238ed10a0b76455f2d28c97e93564a1f7855cea4096ef1c
MD5 fbada9ab74f0493ecb87c7fa56e8d8ca
BLAKE2b-256 1b3550014ade1ade8616c424cfb97a0399fa312daa8ee07b8a5f59e33a173b8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cff0d6749fac8dd7fdf26d0604d8a47c5ee786061972077d71ec7ac0fb7ced2
MD5 c0570f3f601c0d8c4b2093fe2ed04dc8
BLAKE2b-256 ffb6a30fbc596df9228a2648d72350b6e0115527e8695317dc8ad771baf61202

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 172630396d8bdbb5ea1a58e82afc489c8e18076e1f2b2edea20cb30f8926325a
MD5 1b02d010652c81701dbc659fb2d703bb
BLAKE2b-256 74933a7fbf37cc3147611154572cc0eef87973dcb9a054c27598e599166651ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 851.5 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ed29600e55d7df104d5778d499678c305e32e3ccfa873489a7c8304489c5f8f3
MD5 0bc996bd777939257dd140a0b347f44a
BLAKE2b-256 94465f28e287831e71871112f05918896c8184664b3f9bf58b749c298aa5d078

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3a0960c5c11a34e8129a3062f1b1cbb371fad364e2195ebe46a88a9d5eeec0f1
MD5 678155fc08f92202acb4a30af6025703
BLAKE2b-256 47a863e7a3e02f459da8ae15116b9a798df0d7ee046a79090cd7edcafad3bce4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d1d3ef72665d460b7b3e61d3dff4341a195dcb3250b4471eef71db23fca2d91a
MD5 e294769682967690d9fee27276a2c438
BLAKE2b-256 ffe593b10103d51d637fd66d7bf73b3d7dc4b5f56286ed796d0b437af610abbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0fae06e7fb4be18e86eb51e77f0d441975a3ba9ef963f957d750a2a41536ba1
MD5 c5742bd0323347ab95109264157bdd86
BLAKE2b-256 3a7faad0b7208eb228bdac21f2a901143795a054f97e12c59250114e88997dcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c7d4d0927a6b1ef2529a8cc57adf2ce965f7aaef324a4d1ae826d0de43ab4f82
MD5 ed6957513498dba21e2030cfb8973d0f
BLAKE2b-256 c4ebdbb917182101a7f592e95f32ffd089a841cca09737e8e9b7b89cccf5edbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 833.5 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 bb4e96d80de7e6364850a2e168e899b8e85ab80ce19827cc4fbe0aa3c57f8124
MD5 76445d76b89cd24d4b03d65a31b2ec3b
BLAKE2b-256 da4b2cdf5c3fd5af1ca868046dc38e570fd5afc951dcc4b1eb17169ac7956cab

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dc6fe7a27ad9e233c155e89b7e1d9b6d13963e3261ea5b30f3e79c3556c49bc9
MD5 cc5bfb96baa0edaae29259ff35359cde
BLAKE2b-256 176ad58cab7742ea1fbc035fe6eaae40dcad5504a5493539c54aa3ecab096f9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 58d79f4df3e4332b31e671f9487f0c215856cf1f2d9ac3848ac10c27262fd723
MD5 84af05cda92a0ab35b6e7c8b3de99aaa
BLAKE2b-256 3d514b6439d89494eedbf28aa1c68f45d97356f9b861d5fa4449898e165ac33d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64c67402b86a073666f92c2807811e3817a17fedfe505fe89a9f93eea264481c
MD5 f051a5a938ff411f16ccf18f1658a0ea
BLAKE2b-256 397cba9cd606eb72058d495820227f649cc34dcd407b10337091ca3ba1315cbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9e84164e7a68f9c3523c5d104dda6601202b39bae0aac1b73a4f119d387275c4
MD5 d3d72aa0a7ed58f98f88c223d8800985
BLAKE2b-256 f274df2e891cf6dcf9a896b4b3275afb27e2dae3967ebe483ea5037b169d0c62

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 98a119c3f9b152e9b62ec43520392669bd8deae9df269f30569f1c87bf6055a4
MD5 11010ded49237fa310eed627c5848535
BLAKE2b-256 15e213f1284850cd18e828f234ec650775dcf22c99077b0afcb8d1764e204eff

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fbd5152169dc3f6c894c24fc04813f50bf9b929d137f2b965ac926e03329ceba
MD5 ce6418434cae25361faf8d98c2446713
BLAKE2b-256 e2d532540670054eb95e85e0a394e3d2cb0bf6f042dfbd3de712030c662ac609

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp314-cp314-musllinux_1_2_armv7l.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.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35581ba6981e016333063c52719c0b0b1bef0f944e641ad0f4ea34e0b39161f3
MD5 932d95e8c88ba457b204907658505603
BLAKE2b-256 4c55c356a4b9852e315c00a7cc9aa126647140c2555d2b04968ee3d2bae5418b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b7832c8707bfa4f9b081def64aa49954d4813cff7fc9ff4a0b184a4e8697147f
MD5 6663abc1d9d9c492fe81a90df6535642
BLAKE2b-256 74d936e1904009e327675430c6dff6630b54d21e05b997a80cb853a50fd67098

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp314-cp314-manylinux_2_31_armv7l.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.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07d3e8afeeb81044873644e505e56ba06d8bdcc291ef7e26ac0f54c58309267d
MD5 34e06df3f133b39962a756cbd93d61b6
BLAKE2b-256 87a204d0037572b30b01a376ec439feeb3e9a4a631b625cf64b0936723a70770

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 217b46bf096818df16c0e2c43202aa8352e67c4379b1d5f25e98c5d1c7f5414d
MD5 5608e08f4a8ae4d47b42dc1dd19019a6
BLAKE2b-256 1809aedc6ea0c6402ee15569fd54aa970e51d4a40bb31653852c706782773f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3a3bc0c8b65dcd1e55a1cc42a7c7b34e93ad5d4bd1501dc998f4625042e1b110
MD5 e214892e3cc47e9f2a99d554c3553498
BLAKE2b-256 07d248fb76dce89e2efcee51fdf714a151ae57119ea7fb7bba3cf478a95aea31

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a479a824cbf6a646bcec1c34fbbfb85393d03eb2811657e3a6536298d435f76
MD5 fd26d47afa11414ddb933e3c0ddcf3b1
BLAKE2b-256 7eb67ef9ac8a9214448f3354df5982ce2b6497f2ae8c8505b99ad0ff7440b26e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32c7cc978447202ba592e197228767b230d85e52e5ef229e2b22e51c8e3d06ad
MD5 58e478d8bfe541b19e987a4c96bf83f3
BLAKE2b-256 49139ced2198b0981507fdb6086c13cdb4483e4b24cb9e2b16d86e5f4ab3c54d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ace3a6b108679888833cdceea9a6231e406db202b8336eaf68279fe71a1d2ac4
MD5 2d6815d7fd66904ccd58d281638983d3
BLAKE2b-256 43af96eb1dd160e072b227317c07119864e9952cb70cce6d1886f51aec85bb68

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 829.9 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 8cf2aefb0d246d540ea83b4648db690bd7e25d34a7c23c5f250dcba2e4989192
MD5 146aba389f692170eca9cda55eb5867c
BLAKE2b-256 ae860649063183a9c41e390be54e6088a4bf19bf096090b8ebcdbdcbf8e73344

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp313-cp313t-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.2-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e5af2dab8ec5a180d9ff24fbb5b25e589848b93cccb755eceb0bf0e3cfed7e5c
MD5 3653e4498b5f6372c8a9461f10d7624e
BLAKE2b-256 7ac13882b0b720447e9dcba7b7963a2b0b6ca6d580e8b634df19220b7c6ce6e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp313-cp313t-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.2-cp313-cp313t-win32.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 6c0a25490a99c4b73f1deca3efae004df5f2b254760d98cac8d93becf41260d4
MD5 cc9df1783fe53ea53ada008d9ee00165
BLAKE2b-256 a260a67f0e106b624bff673897abc28bee15ee284e8500a4d6850b0df562fb7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp313-cp313t-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.2-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f786811555869b5961b3718b007179e87d73c47414afee5fb882ae1b9b174c0c
MD5 813a1ede344e172bf7aeda62586ecaa6
BLAKE2b-256 61c052ecb984bedb56196f32b9ed1b37bfef47e2acb8b790964a568bbe8c316c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp313-cp313t-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.2-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a39952b8e033758ee15b2de48a5b0689c83ea6bd93c8df3635f2fbf21e52fd25
MD5 3546a94a1efc62852bb01d2ae7d72553
BLAKE2b-256 72255477bff70a26dfaff8c80a32fd9bc3e0992c6ccfabbd39cd42a99073b630

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp313-cp313t-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.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 810.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 def48d5010ddcd2a80b44f14bf0172c29bfc27906d13c0ea69a6e3c00e6f225c
MD5 8d58703a65cdcb1527b89909f4c848d8
BLAKE2b-256 e9e22164d1baf6b5daf7a85d3fba2c917b094e8c97c437405ceb69977e6702e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3fc2e7c3ab006299366b1c8256e452f00eb1659d0e4790b140633627c7d947b7
MD5 26b430d666d29347047f2f3d8cd48531
BLAKE2b-256 c86f262b5f101a3caa65b1e6b5cee6a1b95126dca44b46caf5920c550a5d9be5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ed3af4fa0dbd6d1964f171ac6fff82ed9e76c737eb34ae3daf926c4aefc2ce9b
MD5 289e28dd163f161d8c62797f26c24633
BLAKE2b-256 ff0a0cdf6f768db9af8abb42cca64d5a21afe64da3479aaf82afae355a982e6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef36c21ecb7f4bad7e4e119fe746a787ad684eaf1c383c17a2aff5d75b20fa58
MD5 1951dd70eb98cf830356c80fe9bb0f61
BLAKE2b-256 8e05766227574ef122d483d0754c979f6c1125d652ac7110b20d6c04855247fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1aab0676884e91282817b5710933efc4ea9466d2ba5703b5a7541468695d807a
MD5 08d04602063ac35b89c388671da50cd2
BLAKE2b-256 13842731a207e6b382bf154cb192a04db1b13f5ef7142d0319c97c96c4134083

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 27dcb45427b1966fb43c904d19c841c3e6da147931959cf05388ecef9c5a1e8d
MD5 8f70b85b72ff0b95989421957f2009cc
BLAKE2b-256 a6182bd5fdcd4529d177027fd92bb83370388647cf1ac30985013e68a30fb9ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d027842a956b86aa9706b836c48186da405413d03957afaccda2fbe414bc3912
MD5 4b58d2787eabe931a369b1f6a3dab0f5
BLAKE2b-256 9618bd312f0e976d3904a5ea5ee00269dae1ea1d343ba36571b97efdac815862

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp313-cp313-musllinux_1_2_armv7l.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.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3fad0fb5ac44944ad8f81e729ec45f65a85efb7d7ea4cf67343799c0ea9874b
MD5 0e0077131a91c652a0698153ca6469fd
BLAKE2b-256 7954fdeaaa8f3cda58a8f4bbc31a59894385d98361a69e1720ba3b048e7e1383

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp313-cp313-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 52e8e37566313ac60bfa80754c4c0367eec65b3ef52bb8cc409b88e878b03182
MD5 1392eb2c23cf6a70f610908e861edc22
BLAKE2b-256 b23d6e6f62499d4fb3c4f4777d35be48d8814a6e3611e87e682aab6b1a5d463c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp313-cp313-manylinux_2_31_armv7l.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.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8bef63704b7851ad1adf5d7ceb7f1b3136b78ee0b34240c14ab85ea775f6caa7
MD5 2888a4136d4fcaeb6c4cc2a3dfd0f064
BLAKE2b-256 f61f296576958872ea2d1002bd4048158e5c8e22454bac38ae50dedcac7f1680

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b3c2aea6b1db03a8abd62bb157161d7a65b896c9f85d5efc2f1bb444a107c47a
MD5 20875e085a1dc6c93ae9ee61dab4b792
BLAKE2b-256 563e633481566f27c2cc18330d59a6ea1b91e8d43000f8db09b8b91b10966c74

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 004f04356d84660feffbf8c26975cb0db0e010b2225d6e21b3d84dd8df764652
MD5 625bf9aa737cc4b1fa62a11c8db59752
BLAKE2b-256 8f776fd306c29cd1d4c56430e5249a2857f25b38034074ab8ece893d68662e95

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e8c0d16c0724dab7c7dc4099c1ec410679b2d11c1650b069d15d4ab4370f1cc
MD5 6a122f1cb410a9b16e93ee2970d52bc8
BLAKE2b-256 833ec8c58bb6e5200ebc2599d9bfbd214cdb3291629dd4b513270b3f09e09a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 810863f3a98d09392e5fb481aef9d82597df6ee06f7f11ceafe6077585c4e018
MD5 317c2a6d04edfef12a4748bbaf8da047
BLAKE2b-256 4ea08b012ff192b278ab8242fcd92b63abcc8dd3a4feacd369202f33cda3f4ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f1f5a2566af7409d11f11b0b4e9f76a0ac64577737b821c64a2a6afc971c1c25
MD5 3095c905f3913d000164722c6ffe4f8c
BLAKE2b-256 ac77b894d2fee0c6a9b9ebc196783be15af569186f6436cd131f65970b1f76af

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 811.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4ecd3ab9aebb17becb462eac19151bd143abc614e3d2a0351a72171371ac3f4b
MD5 bf0cb707ce44369466cf52a58850bcae
BLAKE2b-256 ffb7fcad0e2b75b50810669a8a841e3ad08bb8f15198b90c1a5c722057891c9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1a6d43683c04ffb4270bb1498951a39e9c200eb326f933fd5d608c19485049b8
MD5 be7d05f79f6567005d59d70b2ebb53f6
BLAKE2b-256 047f88c2fa572f3752094701c1799eba0c76593f1471a680f7fafcd8335a0aba

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e6968b6db188fbb4c7a18aac25e075940a8204434a2a0d6bddb0a695d7f0c898
MD5 18f0c77ebb4fb9903b69bd08612eb65a
BLAKE2b-256 cd453f2a9d311fd7fde10a167cefe795214dcd36ef2646c7d195f20094526803

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2611b1f6464dddf900bffeee2aa29a9aa1039317cbb226e18d3a5f029d4cf303
MD5 5a9ca49eaad2271df8ec528e0105ad4e
BLAKE2b-256 9796cbd75c6501eefb3b36340c1009a4d3ac3fb193b64f5c181d95ff1c48fef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e1d412122de3c5c492acfcde020f543b9b529e2eb115f875e2fd7470e44ab441
MD5 e026f33a424c58f260e9f3cc97826704
BLAKE2b-256 b4da6b146ba5d40655d6e10b8bf7ea750a9ee3339c5630389d5d3ff6306b68cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 686594bd7f7132cb85900a4cc910e9acb9d39466412b8a275f3d4bc37faba23c
MD5 c40ddf3c5f81c47fba4ebcd59bcf2409
BLAKE2b-256 9b68255eb0c226a91fef099c9132f064c2976a782cb91ac66bd7943be64aa7e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a851a7c6660b6e47723378ca7692cd42700660a8783e4e7d07254a984d63ec8
MD5 904ac034fbe413227bb994623667a134
BLAKE2b-256 19ce63fec66a883ffce8c4004a46372993033da35bbd9162f084924ade8c0e8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp312-cp312-musllinux_1_2_armv7l.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.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 766d133f11888c48497f26a1722afc697a5fbad05bbfec3a41a4bc04fd21af9d
MD5 82d8df0ccc1245b5f7ad74c38799ad5d
BLAKE2b-256 51b718e25997f62a05629090bf09d447289827aa5f3aa91b6c8cc1971735e06a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp312-cp312-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b1febabf4a4a664a2b6025830d93d7703f1cd9dcbe656ed7159053091b4d9389
MD5 f2bd9ac4316f1029a61fa1aa2e9e319e
BLAKE2b-256 fa5c0261ffe35244af1a0a8bdf64ca915f8057974423a7ac15dec1d7f729ba7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp312-cp312-manylinux_2_31_armv7l.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.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5e7e02fb51f9a78e32f4fb8b5546d543e1fb637409cb682a6b8cb12e0c3015c
MD5 ab784026439c13cd25f181fd91e1124e
BLAKE2b-256 3f97e36a7143905472e7bc6651d29296760e8510a7346fb246613f9bde2dabbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9cf077475cd4118a5b846a72749d54b520243be6baddba1dd1446f3b1dbab29c
MD5 d6dd0ddffc8c18c984f0ccb0ae37ac3c
BLAKE2b-256 66c810cb7d0e8fca18f52ea0d7c917b22443d810ea88944602377aaa17e040a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e247612909876f36e6132265deef34efcaaf490e1857022204b206ff76578076
MD5 a9949a28491f77c8be22cd7d8c685fb5
BLAKE2b-256 93460c78ea6ce573c9a6925f657703f253ba561bd342dc5206e076454a857cb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21aa299985d1bbdb3ccf8a8214e7daee72bb7e8c8fb25a520f015dc200a57816
MD5 ab573ef7661864bdbb7c6b9ed67abf6f
BLAKE2b-256 17bbd5e4ec1233e4331e067f943e110258a5d7be4fac8c0b29b01115f33c36eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6028090b49015fc9ff0df3c06751078fe300a291e933a378a7c37b78c4d6a3e
MD5 8e0574b82571bb48309fdcdf4c5104d4
BLAKE2b-256 8106d5effd46094aa0737e244cff0554cb1d03b77280875db6050fdf74f8359f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0418f6ac1da7adf7e6e469876508f63168e80d3265a9e7ab9a2e999020577bfa
MD5 69ca392fad9f1b8065afae7fbd873ccf
BLAKE2b-256 41c4cfadc61c287a1ac1f40570521f7bcd7d7fddb6601f7ed90bd29995e49835

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 814.7 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b2f0e1310f7cb1c0c0033987d0a0e85b4fd51a1c4882f556f082687d519f045d
MD5 54341b1e95bc926e08ff1de98aa858ad
BLAKE2b-256 1103ae326a951e9d2419e2008ce66a6d1797ed0ba22cff37806031430fc9922c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a55ff35536662028563f22e0eadab47c7e94c8798239fe25d3ceca5ab156fd8
MD5 298efdf0c73389bb0bc6359fe6e7ac80
BLAKE2b-256 539eb22f5f4b4dbbaf67007a1abe31554512f0cacac45ea84a4d652c9a128434

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 37d7045dc0ab4cab49d7cca66b651b44939e18e098a2f55466082e173b1aa452
MD5 1999f15c0d403ad6e3a842c5cb0257ca
BLAKE2b-256 732fdab3f2b54ae397c596632c079a7882ded77ce79832fdfce752904b409767

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac2bd7c74523f952a66536f72b3f68260427e2a6954f1f03d758f01bbbf60564
MD5 589fa6ed2a87454b98dec65bc9260db8
BLAKE2b-256 43d58adba18552e25eb66057ffd6b62b3bb08cd89d0bfba3dd8f2876a88ae26a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b16c40709f22c8fc16ca49a5484a468fe0a95f08f29c68043f46f8771e2c37e2
MD5 352e1207da85e71afee5243424090872
BLAKE2b-256 79aed5a2af0fdd01bc41e466a2df77819a5de186672511aef2759557689d899f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b13dc4743a5d222600d98fb4a0345e910829ef4f286e81b34349627355884c87
MD5 2772c7179adb2d970f1506045a4f4696
BLAKE2b-256 b61855de3c2bc785d6144b927d11d595572e654d1d6186609dcc8d7a045ccce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0aa67110e016d2cdce3e5a3330d09fb1dba3cf83350f6eb46a6b9276cbafd094
MD5 d902125dac588121ce990f4d70a1abc9
BLAKE2b-256 b20edab4e6db77be372c0a4d0dce6bc66e596ae8d7dd99f09c418bff77f23757

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp311-cp311-musllinux_1_2_armv7l.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.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35f12b07d58b932ef95b5f66b40c9efc60c5201bccd3c5ddde4a87df19d0aba8
MD5 eb373972b9ac873735cdc920eb385d10
BLAKE2b-256 9f93c58b9260145060fa3f1accfc40be00458f74b78d2f1f2510d597fd56992e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp311-cp311-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 30af5e015462f89408d7b3bbdd614c739adc386e3d47bd565b53ffb670266021
MD5 e052c8b7cbf1d05b68e54a7aed10d3ed
BLAKE2b-256 62c4fa9eb868a44dcc99e6369060f25de257e76ead5e924c1096a8e7eb78aedc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp311-cp311-manylinux_2_31_armv7l.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.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c95eeaa7f2a990757826aa34e7375b50d49172da5ca7536dc461b1d197e0de9b
MD5 5e14e99e3b06e8ec22ccf7b15abd0b6e
BLAKE2b-256 0f46d21f28f430237c616f8de386c1b054537f1bdbe02fe94790784ce55b3e42

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2d001aaf47a500083b189140df16eaefd675bf06c818a71ae9f687b0d6f804f8
MD5 678807db2293b1868cdf5defe6c4677f
BLAKE2b-256 23aff7ec693fb9ad8a450051704e03dcb715d8de256a9a299e4b63e3c1d2fc85

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cfa62729ac2d77a50a240b6331e9fffb5e070625e97e8f7e50fa882b3ea396ad
MD5 524e610bb3284338adecb1967a224411
BLAKE2b-256 dd5beed636f1b836bfe5d04ebe612ecda2df11bfcbb5bdc0a00f0c30af0dcb52

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6fc2bc48a219c171deb8529bfcc90ca6663fbcaa42b54ef202858976078f858a
MD5 289885c24dc17755737a2a8606c6638c
BLAKE2b-256 80c70c4b2035a88ee9182c3bd9de94952c77c35f6a8fe04a3e1519c3c6967f02

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 061884b23a8c5eea9443e52acf02cbd533aff93a5439b0e90b5586a0638b8720
MD5 e7fd7b8cfd38b76a5209c3d93b9b61b2
BLAKE2b-256 34393868c272380e36c0c16749e4ea179ea0bfcdab8db09c50d4845d66db95ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3969670d4b85e589564d6a75638ec2372a4375b7e68e747f3bd37b507cf843e4
MD5 aa262076bcd9a480b908dba6c0031410
BLAKE2b-256 99c960355b914654ae9b5a0340cc3db97f77acdedb04c55ba5b16fa18566a435

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-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.

File details

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

File metadata

  • Download URL: rapidfuzz-3.14.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 814.9 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c78d6f205b871f2d41173f82ded66bcef2f692e1b90c0f627cc8035b72898f35
MD5 6fb19c9c6d3098c554e0ffb20358f096
BLAKE2b-256 bf1b6d8e6daf1232615ec36f702d3971f243d2bc78c4931afe01d9784b005821

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5386ce287e5b71db4fd71747a23ae0ca5053012dc959049e160857c5fdadf6cd
MD5 141e255a0558421569dcdb2f6440f748
BLAKE2b-256 ff65f1f7ef41965c206ca045bfa4dc069394b3ebf914f15cc822ddce38a67210

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-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.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: rapidfuzz-3.14.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6c3dab8f9d4271e32c8746461a58412871ebb07654f77aa6121961e796482d30
MD5 6490a1a90153f265af0ffd32c6b14df6
BLAKE2b-256 672af7a87d6699b5506a7c0d84e390771cb56111c785c00a1c05e7ec4fcddb12

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f10dbbafa3decee704b7a02ffe7914d7dfbbd3d1fce7f37ed2c3d6c3a7c9a8e6
MD5 0df6eed634d842ac658d148a76c9f4d9
BLAKE2b-256 159a6cf30f665245ed662fb6d60bc8d711a86325839e3fb51d40ab76fc097a35

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-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.2-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2aad09712e1ffbc00ac25f12646c7065b84496af7cd0a70b1d5aff6318405732
MD5 6fa3ae95d59ec872449fe2abd423e660
BLAKE2b-256 c37cbd30c75c11fdb1e6220bb96fb69623c5526f668b715889d879f71684bbf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-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.2-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 26b5e6e0d39337431ab1b36faf604873cb1f0de9280e0703f61c6753c8fa1f7f
MD5 a03038ca35c6041a37b40fb929644278
BLAKE2b-256 bd30cc0cb5961544d6b417d85c0df78082d60ca3d3294b2310946d16a637f7d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-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.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e262958d3ca723c1ce32030384a1626e3d43ba7465e01a3e2b633f4300956150
MD5 155c35a5696dd86fd217398fd6916a51
BLAKE2b-256 405aa1fac685466c5d9d96378a9949a2935bded604b7ff3ff97aeabbd5ac6775

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_armv7l.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.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69d6f93916717314209f4e8701d203876baeadf8c9dcaee961b8afeba7435643
MD5 a60a88a612d77090bec5a9df85ba6504
BLAKE2b-256 479f155f5ddf2cbfce2fb81553b5bfa937c318e09fff88b70bf96e97977259f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-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.2-cp310-cp310-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 36d43c9f1b88322ad05b22fa80b6b4a95d2b193d392d3aa7bee652c144cfb1d9
MD5 85c0327792b38c0710fcfdd0066a3def
BLAKE2b-256 035dd61f08091e0d3c2e8d0080e8ec2bc01bc943940300e98f113f5e8bd223ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-manylinux_2_31_armv7l.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.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78f84592f3a2f2773d6f411b755d683b1ce7f05adff4c12c0de923d5f2786e51
MD5 9c396d2b4b457710c5ba64bc704407b4
BLAKE2b-256 398b049218fd009a5cd64b2e9eb4248739b4249228d459698c5c6f824d6b3685

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-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.2-cp310-cp310-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e702e76a6166bff466a33888902404209fffd83740d24918ef74514542f66367
MD5 e57f57fb39908d6a7068f4f6026cb9d9
BLAKE2b-256 9b6519506260235d8f6584bf17e849e5cac5d456e75fd5cb7a4ff1fef8b12eab

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-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.2-cp310-cp310-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fd915693a8d441e5f277bef23065275a2bb492724b5ccf64e38e60edd702b0fb
MD5 f50b8b90716056086a9f4d0925c70d55
BLAKE2b-256 318c4095e19792708240ad6b1827ddad06247e8505bfd63fa52424902cd58f5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-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.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75866e9fa474ccfe6b77367fb7c10e6f9754fb910d9b110490a6fad25501a039
MD5 9dedea970098d87e020a4745b4e0a881
BLAKE2b-256 f6faee152a7ae5310ba78bb959a16d9e5ae7f2b4eac7baead38676460d4f8090

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 654be63b17f3da8414968dfdf15c46c8205960ec8508cbb9d837347bf036dc0b
MD5 a3b545162201a2d9d88a51caae4f9b3a
BLAKE2b-256 d4e24720fb347c04f3890c2faa38ea56867a01b9d46ac89ed497d5a23e246371

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-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.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37ddc4cc3eafe29ec8ba451fcec5244af441eeb53b4e7b4d1d886cd3ff3624f4
MD5 ce26f7bafc23637c20cfa01e5dadb0d1
BLAKE2b-256 7908f939004757afb3ccf24cdc2e187d145bdc4fe7aa9d482a8f1f455f9b7774

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.2-cp310-cp310-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.

Supported by

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