Skip to main content

rapid fuzzy string matching

Project description

RapidFuzz

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

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

DescriptionInstallationUsageLicense


Description

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

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

Requirements

Installation

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

with pip

RapidFuzz can be installed with pip the following way:

pip install rapidfuzz

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

:heavy_multiplication_x:   failure "ImportError: DLL load failed"

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

with conda

RapidFuzz can be installed with conda:

conda install -c conda-forge rapidfuzz

from git

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

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

Usage

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

Scorers

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

Simple Ratio

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

Partial Ratio

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

Token Sort Ratio

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

Token Set Ratio

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

Weighted Ratio

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

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

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

Quick Ratio

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

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

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

Process

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

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

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

The full documentation of processors can be found here

Benchmark

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

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

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

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

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

Benchmark Scorer

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

cdist(samples, words, scorer=scorer)

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

Benchmark cdist

Support the project

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

Support the project through GitHub Sponsors or via PayPal:

.

License

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

Project details


Release history Release notifications | RSS feed

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.1.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.1-pp311-pypy311_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

rapidfuzz-3.14.1-pp310-pypy310_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

rapidfuzz-3.14.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

rapidfuzz-3.14.1-cp314-cp314t-win_arm64.whl (853.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rapidfuzz-3.14.1-cp314-cp314t-macosx_10_13_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

rapidfuzz-3.14.1-cp314-cp314-win_arm64.whl (835.8 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.31+ ARMv7l

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

Uploaded CPython 3.14macOS 11.0+ ARM64

rapidfuzz-3.14.1-cp314-cp314-macosx_10_13_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

rapidfuzz-3.14.1-cp313-cp313t-win_arm64.whl (832.1 kB view details)

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

rapidfuzz-3.14.1-cp313-cp313-win_arm64.whl (812.7 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.31+ ARMv7l

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

rapidfuzz-3.14.1-cp312-cp312-win_arm64.whl (813.2 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.31+ ARMv7l

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

rapidfuzz-3.14.1-cp311-cp311-win_arm64.whl (817.0 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.31+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

rapidfuzz-3.14.1-cp311-cp311-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rapidfuzz-3.14.1-cp310-cp310-win_arm64.whl (817.0 kB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

rapidfuzz-3.14.1-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.1-cp310-cp310-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.31+ ARMv7l

rapidfuzz-3.14.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rapidfuzz-3.14.1-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.1.tar.gz
Algorithm Hash digest
SHA256 b02850e7f7152bd1edff27e9d584505b84968cacedee7a734ec4050c655a803c
MD5 97dfc49c302b9f4738784ca8e95e528c
BLAKE2b-256 edfca98b616db9a42dcdda7c78c76bdfdf6fe290ac4c5ffbb186f73ec981ad5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a4f18092db4825f2517d135445015b40033ed809a41754918a03ef062abe88a0
MD5 db1218c72b284b975b3c51e2ca4eee57
BLAKE2b-256 b658f515c44ba8c6fa5daa35134b94b99661ced852628c5505ead07b905c3fc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 589fb0af91d3aff318750539c832ea1100dbac2c842fde24e42261df443845f6
MD5 e4270508eed0302fa6105a020b940d90
BLAKE2b-256 09cf95d0dacac77eda22499991bd5f304c77c5965fb27348019a48ec3fe4a3f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4a21ccdf1bd7d57a1009030527ba8fae1c74bf832d0a08f6b67de8f5c506c96f
MD5 29c1723a44a238d233efb4afac5b7786
BLAKE2b-256 05c71b17347e30f2b50dd976c54641aa12003569acb1bdaabf45a5cc6f471c58

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.1-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.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4d51efb29c0df0d4f7f64f672a7624c2146527f0745e3572098d753676538800
MD5 0c3e7f97241238b87b7686b2f7e863ca
BLAKE2b-256 d439c12f76f69184bcfb9977d6404b2c5dac7dd4d70ee6803e61556e539d0097

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.1-pp310-pypy310_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.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45c62ada1980ebf4c64c4253993cc8daa018c63163f91db63bb3af69cb74c2e3
MD5 0e629834f34dec738feb1a2733526fc1
BLAKE2b-256 a470a08f4a86387dec97508ead51cc7a4b3130d4e62ac0eae938a6d8e1feff14

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.1-pp310-pypy310_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.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 673ce55a9be5b772dade911909e42382c0828b8a50ed7f9168763fa6b9f7054d
MD5 56d8044ba6319c4a820a4a3d209c79fe
BLAKE2b-256 6d100ed838b296fdac08ecbaa3a220fb4f1d887ff41b0be44fe8eade45bb650e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.1-pp310-pypy310_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.1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7cd312c380d3ce9d35c3ec9726b75eee9da50e8a38e89e229a03db2262d3d96b
MD5 3a38df14addda174e46356f60851e3e8
BLAKE2b-256 c1f4dfc7b8c46b1044a47f7ca55deceb5965985cff3193906cb32913121e6652

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6cb56b695421538fdbe2c0c85888b991d833b8637d2f2b41faa79cea7234c000
MD5 fbdc483265fb715318ca2594f7dfd531
BLAKE2b-256 e430acd29ebd906a50f9e0f27d5f82a48cf5e8854637b21489bd81a2459985cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.14.1-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.12.8

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 93b6294a3ffab32a9b5f9b5ca048fa0474998e7e8bb0f2d2b5e819c64cb71ec7
MD5 99d2bfdd1e2a316f3b028626fcfa10c7
BLAKE2b-256 b5ef6fd10aa028db19c05b4ac7fe77f5613e4719377f630c709d89d7a538eea2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f94d61e44db3fc95a74006a394257af90fa6e826c900a501d749979ff495d702
MD5 1a44c13130a86a1880654cebfee260d1
BLAKE2b-256 9629ca8a3f8525e3d0e7ab49cb927b5fb4a54855f794c9ecd0a0b60a6c96a05f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.1-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.1-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 60879fcae2f7618403c4c746a9a3eec89327d73148fb6e89a933b78442ff0669
MD5 a025b745c4429d3cdc10fb4290f54dab
BLAKE2b-256 b7e7f0a242687143cebd33a1fb165226b73bd9496d47c5acfad93de820a18fa8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 01eab10ec90912d7d28b3f08f6c91adbaf93458a53f849ff70776ecd70dd7a7a
MD5 4aa4ccd4b637205574d2898cf8432912
BLAKE2b-256 a3ffd73fec989213fb6f0b6f15ee4bbdf2d88b0686197951a06b036111cd1c7d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.14.1-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.12.8

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f51c7571295ea97387bac4f048d73cecce51222be78ed808263b45c79c40a440
MD5 cb6e17d55063e2260d1276435805f8f2
BLAKE2b-256 c515d50839d20ad0743aded25b08a98ffb872f4bfda4e310bac6c111fcf6ea1f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.14.1-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.12.8

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c8d1dd1146539e093b84d0805e8951475644af794ace81d957ca612e3eb31598
MD5 4b0a5e796fd96b16d4913e9603ecce9e
BLAKE2b-256 a399250538d73c8fbab60597c3d131a11ef2a634d38b44296ca11922794491ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37017b84953927807847016620d61251fe236bd4bcb25e27b6133d955bb9cafb
MD5 1a76288acf9a70fdd552583ecc21e630
BLAKE2b-256 d1312feb8dfcfcff6508230cd2ccfdde7a8bf988c6fda142fe9ce5d3eb15704d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4373f914ff524ee0146919dea96a40a8200ab157e5a15e777a74a769f73d8a4a
MD5 62ad2b9266fd3d37040a3038ff9555d1
BLAKE2b-256 4f00eab05473af7a2cafb4f3994bc6bf408126b8eec99a569aac6254ac757db4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4acc20776f225ee37d69517a237c090b9fa7e0836a0b8bc58868e9168ba6ef6f
MD5 f515cea62adbbf5658a76888c8018daa
BLAKE2b-256 cd28d4e7fe1515430db98f42deb794c7586a026d302fe70f0216b638d89cf10f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57047493a1f62f11354c7143c380b02f1b355c52733e6b03adb1cb0fe8fb8816
MD5 98546bac7399af00575d60f5a80a2abf
BLAKE2b-256 43c4d753a415fe54531aa882e288db5ed77daaa72e05c1a39e1cbac00d23024f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae2d57464b59297f727c4e201ea99ec7b13935f1f056c753e8103da3f2fc2404
MD5 af47d5c306a898485a0d8c7a048f7217
BLAKE2b-256 55e65b757e2e18de384b11d1daf59608453f0baf5d5d8d1c43e1a964af4dc19a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 474f416cbb9099676de54aa41944c154ba8d25033ee460f87bb23e54af6d01c9
MD5 ae2e10b99c4ba0c6cc57b61dc86330c1
BLAKE2b-256 4234e6405227560f61e956cb4c5de653b0f874751c5ada658d3532d6c1df328e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5967d571243cfb9ad3710e6e628ab68c421a237b76e24a67ac22ee0ff12784d6
MD5 2b52e89845c89db2f69e5d63040ce94f
BLAKE2b-256 11bfafb76adffe4406e6250f14ce48e60a7eb05d4624945bd3c044cfda575fbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 da011a373722fac6e64687297a1d17dc8461b82cb12c437845d5a5b161bc24b9
MD5 bdedcf305f584e2c7aadb02dfcb689b6
BLAKE2b-256 8db96b2a97f4c6be96cac3749f32301b8cdf751ce5617b1c8934c96586a0662b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2e3e61c9e80d8c26709d8aa5c51fdd25139c81a4ab463895f8a567f8347b0548
MD5 cfc7a6c8344a8696f8f2458905d95141
BLAKE2b-256 d8f3d322202ef8fab463759b51ebfaa33228100510c82e6153bd7a922e150270

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fedd5097a44808dddf341466866e5c57a18a19a336565b4ff50aa8f09eb528f6
MD5 3cfc9cf852dde0e0d7e51caf078976ee
BLAKE2b-256 9725f6c5a1ff4ec11edadacb270e70b8415f51fa2f0d5730c2c552b81651fbe3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40301b93b99350edcd02dbb22e37ca5f2a75d0db822e9b3c522da451a93d6f27
MD5 4c94a9828c0e9044ba25d5489d422d98
BLAKE2b-256 ae32b874f48609665fcfeaf16cbaeb2bbc210deef2b88e996c51cfc36c3eb7c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.1-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.1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e84d9a844dc2e4d5c4cabd14c096374ead006583304333c14a6fbde51f612a44
MD5 544b667930495fa50ceb932696d55172
BLAKE2b-256 d63653debca45fbe693bd6181fb05b6a2fd561c87669edb82ec0d7c1961a43f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 61458e83b0b3e2abc3391d0953c47d6325e506ba44d6a25c869c4401b3bc222c
MD5 d0b60452b1827b4885a424e86bd31c47
BLAKE2b-256 4eaa2c03ae112320d0746f2c869cae68c413f3fe3b6403358556f2b747559723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 876dc0c15552f3d704d7fb8d61bdffc872ff63bedf683568d6faad32e51bbce8
MD5 d2facba7889f11a48eb8157683239624
BLAKE2b-256 9bd07a5d9c04446f8b66882b0fae45b36a838cf4d31439b5d1ab48a9d17c8e57

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.14.1-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.12.8

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 40875e0c06f1a388f1cab3885744f847b557e0b1642dfc31ff02039f9f0823ef
MD5 386bf470fc4619cf517a48c891a5797a
BLAKE2b-256 7ba0f46fca44457ca1f25f23cc1f06867454fc3c3be118cd10b552b0ab3e58a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a2d80cc1a4fcc7e259ed4f505e70b36433a63fa251f1bb69ff279fe376c5efd
MD5 20f7fe86807d75dbc31d19e69127b8db
BLAKE2b-256 d961959ed7460941d8a81cbf6552b9c45564778a36cf5e5aa872558b30fc02b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d937dbeda71c921ef6537c6d41a84f1b8112f107589c9977059de57a1d726dd6
MD5 94c96d3e2e170598127545cac9dd42f1
BLAKE2b-256 e2cb1ad9a76d974d153783f8e0be8dbe60ec46488fac6e519db804e299e0da06

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 cf75769662eadf5f9bd24e865c19e5ca7718e879273dce4e7b3b5824c4da0eb4
MD5 805d38e8d04e9e73a1efd0d88ca15431
BLAKE2b-256 acfe4b0ac16c118a2367d85450b45251ee5362661e9118a1cef88aae1765ffff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.14.1-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.12.8

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 83b8cc6336709fa5db0579189bfd125df280a554af544b2dc1c7da9cdad7e44d
MD5 25d0967ae17a3221f6352372c36eb592
BLAKE2b-256 6a8ba8fe5a6ee4d06fd413aaa9a7e0a23a8630c4b18501509d053646d18c2aa7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.14.1-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.12.8

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b1fe6001baa9fa36bcb565e24e88830718f6c90896b91ceffcb48881e3adddbc
MD5 66b9624759847cd70be998cae65bdbfb
BLAKE2b-256 18a473f1b1f7f44d55f40ffbffe85e529eb9d7e7f7b2ffc0931760eadd163995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44e741d785de57d1a7bae03599c1cbc7335d0b060a35e60c44c382566e22782e
MD5 f11b78896d652d9737cb2cf653889445
BLAKE2b-256 4a6324759b2a751562630b244e68ccaaf7a7525c720588fcc77c964146355aee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 67ea46fa8cc78174bad09d66b9a4b98d3068e85de677e3c71ed931a1de28171f
MD5 da6397d31fd9d1f1e3a698fc1562165f
BLAKE2b-256 688004e5276d223060eca45250dbf79ea39940c0be8b3083661d58d57572c2c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cb5acf24590bc5e57027283b015950d713f9e4d155fda5cfa71adef3b3a84502
MD5 ba894dea4c6bfc85d3878c0bd4d0a4e8
BLAKE2b-256 2594a9ec7ccb28381f14de696ffd51c321974762f137679df986f5375d35264f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ace21f7a78519d8e889b1240489cd021c5355c496cb151b479b741a4c27f0a25
MD5 f25e2e9550193c8251203defe4a624e1
BLAKE2b-256 7fb7c60c9d22a7debed8b8b751f506a4cece5c22c0b05e47a819d6b47bc8c14e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe2651258c1f1afa9b66f44bf82f639d5f83034f9804877a1bbbae2120539ad1
MD5 9953ea035ec0e31c7e93d906ff329e97
BLAKE2b-256 2c6cb96af62bc7615d821e3f6b47563c265fd7379d7236dfbc1cbbcce8beb1d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 893fdfd4f66ebb67f33da89eb1bd1674b7b30442fdee84db87f6cb9074bf0ce9
MD5 1b031b30b539c7825f0c313821a6991e
BLAKE2b-256 ceb7d8404ed5ad56eb74463e5ebf0a14f0019d7eb0e65e0323f709fe72e0884c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f277801f55b2f3923ef2de51ab94689a0671a4524bf7b611de979f308a54cd6f
MD5 0b41f4f42110ec0aebb9a85891804332
BLAKE2b-256 f89b623001dddc518afaa08ed1fbbfc4005c8692b7a32b0f08b20c506f17a770

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0591df2e856ad583644b40a2b99fb522f93543c65e64b771241dda6d1cfdc96b
MD5 49e794467731acd38b3345a5ee9c0831
BLAKE2b-256 7f2f0b3153053b1acca90969eb0867922ac8515b1a8a48706a3215c2db60e87c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8b41d95ef86a6295d353dc3bb6c80550665ba2c3bef3a9feab46074d12a9af8f
MD5 8d56ac7f61854881e10b050c6a44d3e4
BLAKE2b-256 f4439f282ba539e404bdd7052c7371d3aaaa1a9417979d2a1d8332670c7f385a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61d77e09b2b6bc38228f53b9ea7972a00722a14a6048be9a3672fb5cb08bad3a
MD5 60df22e7c13c288494bf27606763373c
BLAKE2b-256 3988bfec24da0607c39e5841ced5594ea1b907d20f83adf0e3ee87fa454a425b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f571d20152fc4833b7b5e781b36d5e4f31f3b5a596a3d53cf66a1bd4436b4f4
MD5 d0124631895194670250ea3cc62a290c
BLAKE2b-256 12ae6cb211f8930bea20fa989b23f31ee7f92940caaf24e3e510d242a1b28de4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8d69f470d63ee824132ecd80b1974e1d15dd9df5193916901d7860cef081a260
MD5 4bf44e9d8012e8ed297fa7f873cadcc4
BLAKE2b-256 0df20024cc8eead108c4c29337abe133d72ddf3406ce9bbfbcfc110414a7ea07

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6c7c26025f7934a169a23dafea6807cfc3fb556f1dd49229faf2171e5d8101cc
MD5 459748f8b9059b852652e7c6ccd0b2e1
BLAKE2b-256 b3c6cc5d4bd1b16ea2657c80b745d8b1c788041a31fad52e7681496197b41562

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.14.1-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.12.8

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e06664c7fdb51c708e082df08a6888fce4c5c416d7e3cc2fa66dd80eb76a149d
MD5 09e15a8b60138ec4953df86eba745723
BLAKE2b-256 788d199df0370133fe9f35bc72f3c037b53c93c5c1fc1e8d915cf7c1f6bb8557

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.14.1-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.12.8

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9c83270e44a6ae7a39fc1d7e72a27486bccc1fa5f34e01572b1b90b019e6b566
MD5 7d3432c555ba736b3a50756c84d3e152
BLAKE2b-256 1f102327f83fad3534a8d69fe9cd718f645ec1fe828b60c0e0e97efc03bf12f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8ff5dbe78db0a10c1f916368e21d328935896240f71f721e073cf6c4c8cdedd
MD5 02bdc02270c9d9ac23e0a5644bc6dde7
BLAKE2b-256 05de20e330d6d58cbf83da914accd9e303048b7abae2f198886f65a344b69695

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 07a9fad3247e68798424bdc116c1094e88ecfabc17b29edf42a777520347648e
MD5 7d10344167d79db981cb248d2eb7cf49
BLAKE2b-256 539a229c26dc4f91bad323f07304ee5ccbc28f0d21c76047a1e4f813187d0bad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6325ca435b99f4001aac919ab8922ac464999b100173317defb83eae34e82139
MD5 98c829de7a6f184395e5df5c3a5119b8
BLAKE2b-256 b20c53f88286b912faf4a3b2619a60df4f4a67bd0edcf5970d7b0c1143501f0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 13e0ea3d0c533969158727d1bb7a08c2cc9a816ab83f8f0dcfde7e38938ce3e6
MD5 0c082965ab455cfe1cb6120d4dc52c54
BLAKE2b-256 0c71e9864cd5b0f086c4a03791f5dfe0155a1b132f789fe19b0c76fbabd20513

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61c5b9ab6f730e6478aa2def566223712d121c6f69a94c7cc002044799442afd
MD5 28a1b20c305a2c77ee7a84f79b171df4
BLAKE2b-256 40431d54a4ad1a5fac2394d5f28a3108e2bf73c26f4f23663535e3139cfede9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6ad3395a416f8b126ff11c788531f157c7debeb626f9d897c153ff8980da10fb
MD5 ba1bb7176b5165a83c1801fee6e38f2d
BLAKE2b-256 f85e24f0226ddb5440cabd88605d2491f99ae3748a6b27b0bc9703772892ced7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26db0e815213d04234298dea0d884d92b9cb8d4ba954cab7cf67a35853128a33
MD5 2e7b7e8485863771f14f40cb6b231ac7
BLAKE2b-256 20147399c18c460e72d1b754e80dafc9f65cb42a46cc8f29cd57d11c0c4acc94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 70c845b64a033a20c44ed26bc890eeb851215148cc3e696499f5f65529afb6cb
MD5 dc294a701ad36d5d80793112678dd3cc
BLAKE2b-256 a857e73755c52fb451f2054196404ccc468577f8da023b3a48c80bce29ee5d4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6e9ee3e1eb0a027717ee72fe34dc9ac5b3e58119f1bd8dd15bc19ed54ae3e62b
MD5 2bf8701a9c94633d18a2f56d1945b0ef
BLAKE2b-256 d38a1265547b771128b686f3c431377ff1db2fa073397ed082a25998a7b06d4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c1c3d07d53dcafee10599da8988d2b1f39df236aee501ecbd617bd883454fcd
MD5 4ef6330827bbb5ddcb034f28637aeb18
BLAKE2b-256 debd98d065dd0a4479a635df855616980eaae1a1a07a876db9400d421b5b6371

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0afcf2d6cb633d0d4260d8df6a40de2d9c93e9546e2c6b317ab03f89aa120ad7
MD5 724d0a0fdfd391f8fe7af9d03778dd46
BLAKE2b-256 debdb5e445d156cb1c2a87d36d8da53daf4d2a1d1729b4851660017898b49aa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 809515194f628004aac1b1b280c3734c5ea0ccbd45938c9c9656a23ae8b8f553
MD5 d7532485729d388220b1192c4d8ef905
BLAKE2b-256 df772f4887c9b786f203e50b816c1cde71f96642f194e6fa752acfa042cf53fd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5087d8ad453092d80c042a08919b1cb20c8ad6047d772dc9312acd834da00f75
MD5 54b1c9b58b522bf73cdb480aa1f7ed36
BLAKE2b-256 c666aa93b52f95a314584d71fa0b76df00bdd4158aafffa76a350f1ae416396c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.14.1-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.12.8

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e5847f30d7d4edefe0cb37294d956d3495dd127c1c56e9128af3c2258a520bb4
MD5 a867fbfd16a3196f9981ba84dbc51052
BLAKE2b-256 015ca4caf76535f35fceab25b2aaaed0baecf15b3d1fd40746f71985d20f8c4b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.14.1-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.12.8

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4b42f7b9c58cbcfbfaddc5a6278b4ca3b6cd8983e7fd6af70ca791dff7105fb9
MD5 1d5132f1f7c719ba3d70c5f9e4fc3140
BLAKE2b-256 462645db59195929dde5832852c9de8533b2ac97dcc0d852d1f18aca33828122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db656884b20b213d846f6bc990c053d1f4a60e6d4357f7211775b02092784ca1
MD5 7ef0b985f225ac0859f95869f92808cc
BLAKE2b-256 763e5a3f9a5540f18e0126e36f86ecf600145344acb202d94b63ee45211a18b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4d0d9163725b7ad37a8c46988cae9ebab255984db95ad01bf1987ceb9e3058dd
MD5 b8258cad69e07fa45a4e01bf5f9c7499
BLAKE2b-256 7869cedcdee16a49e49d4985eab73b59447f211736c5953a58f1b91b6c53a73f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4f069dec5c450bd987481e752f0a9979e8fdf8e21e5307f5058f5c4bb162fa56
MD5 bf51e2cd26b49f6f21e022ed72fac420
BLAKE2b-256 509229811d2ba7c984251a342c4f9ccc7cc4aa09d43d800af71510cd51c36453

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b2c12e5b9eb8fe9a51b92fe69e9ca362c0970e960268188a6d295e1dec91e6d
MD5 9a5e57daa5b26f78cc28eed76daf6c94
BLAKE2b-256 7060af51c50d238c82f2179edc4b9f799cc5a50c2c0ebebdcfaa97ded7d02978

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb654a35b373d712a6b0aa2a496b2b5cdd9d32410cfbaecc402d7424a90ba72a
MD5 3f161679a104607eba03abff96da5c48
BLAKE2b-256 deb56b90ed7127a1732efef39db46dd0afc911f979f215b371c325a2eca9cb15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2ef72e41b1a110149f25b14637f1cedea6df192462120bea3433980fe9d8ac05
MD5 1aa922c5f58bea97b1700ae93860d8e4
BLAKE2b-256 61b242850c9616ddd2887904e5dd5377912cbabe2776fdc9fd4b25e6e12fba32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e52e4c34fd567f77513e886b66029c1ae02f094380d10eba18ba1c68a46d8b90
MD5 bede54ab7df93106f37fd94d8d3eae58
BLAKE2b-256 8527e14e9830255db8a99200f7111b158ddef04372cf6332a415d053fe57cc9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5b6ac3f9810949caef0e63380b11a3c32a92f26bacb9ced5e32c33560fcdf8d1
MD5 81bb5847dcd94f31ce58e3c758280bd0
BLAKE2b-256 a81ef311a5c95ddf922db6dd8666efeceb9ac69e1319ed098ac80068a4041732

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f9b6a6fb8ed9b951e5f3b82c1ce6b1665308ec1a0da87f799b16e24fc59e4662
MD5 5be6239745ca51d96cf7bc7f8fe6ae4a
BLAKE2b-256 9097a6944955713b47d88e8ca4305ca7484940d808c4e6c4e28b6fa0fcbff97e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e532bf46de5fd3a1efde73a16a4d231d011bce401c72abe3c6ecf9de681003f
MD5 04db3240f679877beee0b6af5c1b7e5c
BLAKE2b-256 d506400d44842f4603ce1bebeaeabe776f510e329e7dbf6c71b6f2805e377889

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e6ba7e6eb2ab03870dcab441d707513db0b4264c12fba7b703e90e8b4296df2
MD5 571d690679163aa8a255657c966d2b94
BLAKE2b-256 c0f367f5c5cd4d728993c48c1dcb5da54338d77c03c34b4903cc7839a3b89faf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d976701060886a791c8a9260b1d4139d14c1f1e9a6ab6116b45a1acf3baff67
MD5 2cf1f04eb8d84c7745731cc7c9766a6a
BLAKE2b-256 5cc7c3c860d512606225c11c8ee455b4dc0b0214dbcfac90a2c22dddf55320f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.1-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.1-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e94cee93faa792572c574a615abe12912124b4ffcf55876b72312914ab663345
MD5 f84faa815304fb13d8c6f1ec94e2a4dc
BLAKE2b-256 59c51e0b17f20fd3d701470548a6db8f36d589fb1a8a65d3828968547d987486

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.14.1-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.12.8

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 59a8694beb9a13c4090ab3d1712cabbd896c6949706d1364e2a2e1713c413760
MD5 20fdc4fd013c8c6e8beaa84943b41dd9
BLAKE2b-256 730aca231464ec689f2aabf9547a52cbc76a10affe960bddde8660699ba3de33

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.14.1-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.12.8

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5e1c1f2292baa4049535b07e9e81feb29e3650d2ba35ee491e64aca7ae4cb15e
MD5 f0d0c95cffabc965fc716f18f0d1b386
BLAKE2b-256 046fd2e060a2094cfb7f3cd487c376e098abb22601e0eea178e51a59ce0a3158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e4b12e921b0fa90d7c2248742a536f21eae5562174090b83edd0b4ab8b557d7
MD5 b1a0503e1930e868dd11a464733d5bcf
BLAKE2b-256 5fb3eba5a6c217200fd1d3615997930a9e5db6a74e3002b7867b54545f9b5cbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ca1c1494ac9f9386d37f0e50cbaf4d07d184903aed7691549df1b37e9616edc9
MD5 9f53a2cf13f0138228b847af2c5a5aa6
BLAKE2b-256 d790a99e6cfd90feb9d770654f1f39321099bbbf7f85d2832f2ef48d3f4ebc5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bf1ba22d36858b265c95cd774ba7fe8991e80a99cd86fe4f388605b01aee81a3
MD5 8a163c5a78678ddf6850f9088f8361df
BLAKE2b-256 bdaf6587c6d590abe232c530ad43fbfbcaec899bff7204e237f1fd21e2e44b81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c0f0dd022b8a7cbf3c891f6de96a80ab6a426f1069a085327816cea749e096c2
MD5 fa556cd816980a6630b6ae70ae7d3737
BLAKE2b-256 40d44152e8821b5c548443a6c46568fccef13de5818a5ab370d553ea3d5955b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d665380503a575dda52eb712ea521f789e8f8fd629c7a8e6c0f8ff480febc78
MD5 8e12371efce5b410db5f13d834dbf351
BLAKE2b-256 840824916c3c3d55d6236474c9da0a595641d0013d3604de0625e8a8974371c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fe87d94602624f8f25fff9a0a7b47f33756c4d9fc32b6d3308bb142aa483b8a4
MD5 65efd54ee41f96cd6012e03637a71014
BLAKE2b-256 0fe8c9620e358805c099e6755b7d2827b1e711b5e61914d6112ce2faa2c2af79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c51519eb2f20b52eba6fc7d857ae94acc6c2a1f5d0f2d794b9d4977cdc29dd7
MD5 b0a140ff49ea19ec2372fa510a1fb049
BLAKE2b-256 58f6a5ee2db25f36b0e5e06502fb77449b7718cd9f92ad36d598e669ba91db7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e9e71b3fe7e4a1590843389a90fe2a8684649fc74b9b7446e17ee504ddddb7de
MD5 dbc9b719c8a04f027a388eba3f11b7c3
BLAKE2b-256 99f794618fcaaac8c04abf364f405c6811a02bc9edef209f276dc513a9a50f7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bc133652da143aca1ab72de235446432888b2b7f44ee332d006f8207967ecb8a
MD5 5b7e866b1f2d80a7d6bbd7da8981c560
BLAKE2b-256 194983a14a6a90982b090257c4b2e96b9b9c423a89012b8504d5a14d92a4f8c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0307f018b16feaa36074bcec2496f6f120af151a098910296e72e233232a62f
MD5 1a06fa3092e128ddd393976633ab6dc6
BLAKE2b-256 c55b5715445e29c1c6ba364b3d27278da3fdffb18d9147982e977c6638dcecbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eff22cc938c3f74d194df03790a6c3325d213b28cf65cdefd6fdeae759b745d5
MD5 e061a51349e87afcac2cbc08a1c1dd89
BLAKE2b-256 51affd7b8662a3b6952559af322dcf1c9d4eb5ec6be2697c30ae8ed3c44876ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 489440e4b5eea0d150a31076eb183bed0ec84f934df206c72ae4fc3424501758
MD5 b79bae48bbe0af5ac91940c9268f11eb
BLAKE2b-256 6ab94e35178f405a1a95abd37cce4dc09d4a5bbc5e098687680b5ba796d3115b

See more details on using hashes here.

Provenance

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