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

Uploaded Source

Built Distributions

rapidfuzz-3.12.2-pp311-pypy311_pp73-win_amd64.whl (1.6 MB view details)

Uploaded PyPy Windows x86-64

rapidfuzz-3.12.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-3.12.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-3.12.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

rapidfuzz-3.12.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-3.12.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

rapidfuzz-3.12.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-3.12.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-3.12.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

rapidfuzz-3.12.2-cp313-cp313-win_arm64.whl (863.5 kB view details)

Uploaded CPython 3.13 Windows ARM64

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

rapidfuzz-3.12.2-cp313-cp313-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

rapidfuzz-3.12.2-cp313-cp313-musllinux_1_2_s390x.whl (3.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

rapidfuzz-3.12.2-cp313-cp313-musllinux_1_2_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.12.2-cp313-cp313-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

rapidfuzz-3.12.2-cp313-cp313-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.13+ x86-64

rapidfuzz-3.12.2-cp312-cp312-win_arm64.whl (864.7 kB view details)

Uploaded CPython 3.12 Windows ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

rapidfuzz-3.12.2-cp312-cp312-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

rapidfuzz-3.12.2-cp312-cp312-musllinux_1_2_s390x.whl (3.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

rapidfuzz-3.12.2-cp312-cp312-musllinux_1_2_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.12.2-cp312-cp312-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

rapidfuzz-3.12.2-cp312-cp312-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (5.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rapidfuzz-3.12.2-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.13+ x86-64

rapidfuzz-3.12.2-cp311-cp311-win_arm64.whl (870.9 kB view details)

Uploaded CPython 3.11 Windows ARM64

rapidfuzz-3.12.2-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

rapidfuzz-3.12.2-cp311-cp311-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

rapidfuzz-3.12.2-cp311-cp311-musllinux_1_2_s390x.whl (3.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

rapidfuzz-3.12.2-cp311-cp311-musllinux_1_2_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.12.2-cp311-cp311-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rapidfuzz-3.12.2-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

rapidfuzz-3.12.2-cp310-cp310-win_arm64.whl (870.1 kB view details)

Uploaded CPython 3.10 Windows ARM64

rapidfuzz-3.12.2-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

rapidfuzz-3.12.2-cp310-cp310-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

rapidfuzz-3.12.2-cp310-cp310-musllinux_1_2_s390x.whl (3.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

rapidfuzz-3.12.2-cp310-cp310-musllinux_1_2_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.12.2-cp310-cp310-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

rapidfuzz-3.12.2-cp39-cp39-win_arm64.whl (871.7 kB view details)

Uploaded CPython 3.9 Windows ARM64

rapidfuzz-3.12.2-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

rapidfuzz-3.12.2-cp39-cp39-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

rapidfuzz-3.12.2-cp39-cp39-musllinux_1_2_s390x.whl (3.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

rapidfuzz-3.12.2-cp39-cp39-musllinux_1_2_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.12.2-cp39-cp39-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rapidfuzz-3.12.2-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rapidfuzz-3.12.2-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-3.12.2.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.12.2.tar.gz
Algorithm Hash digest
SHA256 b0ba1ccc22fff782e7152a3d3d0caca44ec4e32dc48ba01c560b8593965b5aa3
MD5 583ce4bdaa24e7859117fb42a784cf9b
BLAKE2b-256 f9be8dff25a6157dfbde9867720b1282157fe7b809e085130bb89d7655c62186

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 54bb69ebe5ca0bd7527357e348f16a4c0c52fe0c2fcc8a041010467dcb8385f7
MD5 1383142f3729a580283c2a4ff1e4ade8
BLAKE2b-256 09f6fa777f336629aee8938f3d5c95c09df38459d4eadbdbe34642889857fb6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.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.12.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36d3ef4f047ed1bc96fa29289f9e67a637ddca5e4f4d3dc7cb7f50eb33ec1664
MD5 12dcccc049af3af94842c67bed835674
BLAKE2b-256 4e2d107c489443f6438780d2e40747d5880c8d9374a64e17487eb4085fe7f1f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_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.12.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3745c6443890265513a3c8777f2de4cb897aeb906a406f97741019be8ad5bcc
MD5 fc3655958cafca4185109c8b0d2e05eb
BLAKE2b-256 dd48170c37cfdf04efa34e7cafc688a8517c9098c1d27e1513393ad71bf3165c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.12.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dda45f47b559be72ecbce45c7f71dc7c97b9772630ab0f3286d97d2c3025ab71
MD5 c05482f793d36a7099233ad19440260d
BLAKE2b-256 564ade2cfab279497d0b2529d3fec398f60cf8e27a51d667b6529081fbdb0af2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_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.12.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ae9ded463f2ca4ba1eb762913c5f14c23d2e120739a62b7f4cc102eab32dc90
MD5 7b74f3613024cbee2fac01e94a375b0c
BLAKE2b-256 fd6254914f63e185539fbcca65acb1f7c879740a278d240527ed5ddd40bd7690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9b1e6f48e1ffa0749261ee23a1c6462bdd0be5eac83093f4711de17a42ae78ad
MD5 795209383218e79e2d9c672f8154c541
BLAKE2b-256 ee4de910b70839d88d1c38ba806b0ddaa94b478cca8a09f4e7155b2b607c34b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 648adc2dd2cf873efc23befcc6e75754e204a409dfa77efd0fea30d08f22ef9d
MD5 7108fa73b4208ca4536b717c0bf57053
BLAKE2b-256 c367c7c4129e8b8b674a7b1d82edc36ed093418fdcf011e3a25150895b24a963

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-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.12.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83eb7ef732c2f8533c6b5fbe69858a722c218acc3e1fc190ab6924a8af7e7e0e
MD5 df423dd08a919c301a897fc60aebfffd
BLAKE2b-256 6fde87fcb20fda640a2cf0cebe4b0dc3ab970b1ef8a9d48d05363e375fc05982

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_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.12.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29ca445e320e5a8df3bd1d75b4fa4ecfa7c681942b9ac65b55168070a1a1960e
MD5 b6574a58c59bb7bee037bf5c26450291
BLAKE2b-256 63f5ac535622eb163b9a242c40633587916e71f23233bcd6e3d3e70ae2a99a4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b9e43cf2213e524f3309d329f1ad8dbf658db004ed44f6ae1cd2919aa997da5
MD5 2a61adb949039369e404850213e69e84
BLAKE2b-256 f94f36e8ae37e82a617b8d8da8162744bf69b15091743c3f70699090cb793dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_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.12.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54e53662d71ed660c83c5109127c8e30b9e607884b7c45d2aff7929bbbd00589
MD5 8e83a298b7fd4b2d37c7fd0ba575fa15
BLAKE2b-256 8c9306a29076722ef6b05a81132eac9847592185ee97a1dadc7ead2f37334ebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e5fd3ce849b27d063755829cda27a9dab6dbd63be3801f2a40c60ec563a4c90f
MD5 3a8682a8ed9abedf7d3aba79106ad4ca
BLAKE2b-256 9277a72abb16c5cb093980570871aa152e6d47fc9cf2482daeea9687708be655

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-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.12.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3b3c4df0321df6f8f0b61afbaa2ced9622750ee1e619128db57a18533d139820
MD5 ef4b04ebac9306ca7c0862804fd9d699
BLAKE2b-256 a1510d7b1eecd83982fe190baa8ea7060307854436e349bc8ccc4dcea5087ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-pp39-pypy39_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.12.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5df0cecc2852fcb078ed1b4482fac4fc2c2e7787f3edda8920d9a4c0f51b1c95
MD5 d87fe4f8654ee0807fdacbe519e0f095
BLAKE2b-256 2787d041dc29a99e376ebb5a7c35d11e1a52c5a5a962543c4d81bcbea958e56e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_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.12.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f177e1eb6e4f5261a89c475e21bce7a99064a8f217d2336fb897408f46f0ceaf
MD5 66bf716b912b6fe80136e49e7cc1a9d2
BLAKE2b-256 5c8759dc6c5b3601c476ac12d0f978607c618daa1b35e3805a7092a91bf7c2d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40c0f16d62d6553527de3dab2fb69709c4383430ea44bce8fb4711ed4cbc6ae3
MD5 e4308664ca59d4daccb79094894b48cc
BLAKE2b-256 564f0e4844c0e0848de9993f453337e0e7255f687da37545e539cf000b41a74c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_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.12.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8117dab9b26a1aaffab59b4e30f80ac4d55e61ad4139a637c149365960933bee
MD5 9eaa9948c5a62337d11bf271f30991a1
BLAKE2b-256 bec9b37bc91ec12dedc8d7eff0aeb921909b51e6593f4264c9927a4e04a1f8ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-pp39-pypy39_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.12.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3f2ddd5b99b254039a8c82be5749d4d75943f62eb2c2918acf6ffd586852834f
MD5 fe2b53e3dead0a3754b03ab961aff61d
BLAKE2b-256 c18943139cfdcd523024fcef1a5a6f2544f25919d80d18fe495be7e7275ed0ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-pp39-pypy39_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.12.2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 69f6ecdf1452139f2b947d0c169a605de578efdb72cbb2373cb0a94edca1fd34
MD5 d48f33fd1c1986593e0a0fb713afdd2e
BLAKE2b-256 4b43ca3d1018b392f49131843648e10b08ace23afe8dad3bee5f136e4346b7cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 55bcc003541f5f16ec0a73bf6de758161973f9e8d75161954380738dd147f9f2
MD5 e88c1e2c7d7cdc18104f6b6cb9b94aa6
BLAKE2b-256 ef7e792d609484776c8a40e1695ebd28b62196be9f8347b785b9104604dc7268

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.12.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.8 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.12.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cf165a76870cd875567941cf861dfd361a0a6e6a56b936c5d30042ddc9def090
MD5 ecfe6c0781af11b436a8ceb488688a8e
BLAKE2b-256 13287bf0ee8d35efa7ab14e83d1795cdfd54833aa0428b6f87e987893136c372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7c9a003002434889255ff5676ca0f8934a478065ab5e702f75dc42639505bba
MD5 aea1cd533ba8dce8e0679bd216217427
BLAKE2b-256 f581ce0b774e540a2e22ec802e383131d7ead18347197304d584c4ccf7b8861a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e3ceb87c11d2d0fbe8559bb795b0c0604b84cfc8bb7b8720b5c16e9e31e00f41
MD5 1dcd7ec26def8167696028528ad09d2d
BLAKE2b-256 78a99c649ace4b7f885e0a5fdcd1f33b057ebd83ecc2837693e6659bd944a2bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 50a9c54c0147b468363119132d514c5024fbad1ed8af12bd8bd411b0119f9208
MD5 b194f270d51c7aa3d1ffaa0fb7040d12
BLAKE2b-256 fb8f1dc604d05e07150a02b56a8ffc47df75ce316c65467259622c9edf098451

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.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.12.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 758b10380ad34c1f51753a070d7bb278001b5e6fcf544121c6df93170952d705
MD5 81b516689a2f4566c77a054b773ae035
BLAKE2b-256 b2a6b954f0766f644eb8dd8df44703e024ab4f5f15a8f8f5ea969963dd036f50

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32691aa59577f42864d5535cb6225d0f47e2c7bff59cf4556e5171e96af68cc1
MD5 27425672b2b7d8092ba7113465e33a8a
BLAKE2b-256 0116f3f34b207fdc8c61a33f9d2d61fc96b62c7dadca88bda1df1be4b94afb0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.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.12.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f9b0adc3d894beb51f5022f64717b6114a6fabaca83d77e93ac7675911c8cc5
MD5 c0bbc689b55df6b9f18f0d5aeb326ce8
BLAKE2b-256 ba7181f77b08333200be6984b6cdf2bdfd7cfca4943f16b478a2f7838cba8d66

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.12.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bccfb30c668620c5bc3490f2dc7d7da1cca0ead5a9da8b755e2e02e2ef0dff14
MD5 809180fdd6025adc810fe4c5aa6ff68b
BLAKE2b-256 f6b0ce942a1448b1a75d64af230dd746dede502224dd29ca9001665bbfd4bee6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_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.12.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96fa00bc105caa34b6cd93dca14a29243a3a7f0c336e4dcd36348d38511e15ac
MD5 5fe473679b11518576f9fbdb3c9f2d64
BLAKE2b-256 1ea27c680cdc5532746dba67ecf302eed975252657094e50ae334fa9268352e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_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.12.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e0c7989ff32c077bb8fd53253fd6ca569d1bfebc80b17557e60750e6909ba4fe
MD5 5d7e51c0610394e5fa526cec99aac0c9
BLAKE2b-256 336b757106f4c21fe3f20ce13ba3df560da60e52fe0dc390fd22bf613761669c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78fafaf7f5a48ee35ccd7928339080a0136e27cf97396de45259eca1d331b714
MD5 5e5893b22fd8ab3e9363b52f3d2e0873
BLAKE2b-256 dc60aeea3eed402c40a8cf055d554678769fbee0dd95c22f04546070a22bb90e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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.12.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe2dfc454ee51ba168a67b1e92b72aad251e45a074972cef13340bbad2fd9438
MD5 f3165231554cce82ac89b0e3f777552b
BLAKE2b-256 54854e486bf9ea05e771ad231731305ed701db1339157f630b76b246ce29cf71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 941f31038dba5d3dedcfcceba81d61570ad457c873a24ceb13f4f44fcb574260
MD5 b4c0c9906742a6fd1fc0cd0b400139df
BLAKE2b-256 96592ea3b5bb82798eae73d6ee892264ebfe42727626c1f0e96c77120f0d5cf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d41e8231326e94fd07c4d8f424f6bed08fead6f5e6688d1e6e787f1443ae7631
MD5 85eea67b90b809ba4ba87c3089c88c12
BLAKE2b-256 a5bcaa8a4dc4ebff966dd039cce017c614cfd202049b4d1a2daafee7d018521b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1a314d170ee272ac87579f25a6cf8d16a031e1f7a7b07663434b41a1473bc501
MD5 91759d7c03955d58f4c8e2eb02425e56
BLAKE2b-256 caa42ccebda5fb8a266d163d57a42c2a6ef6f91815df5d89cf38c12e8aa6ed0b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.12.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.8 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.12.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6c7152d77b2eb6bfac7baa11f2a9c45fd5a2d848dbb310acd0953b3b789d95c9
MD5 c32987d74b929c325d01e952bc2dea16
BLAKE2b-256 b1fefdae322869885115dd19a38c1da71b73a8832aa77757c93f460743d4f54c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b63170d9db00629b5b3f2862114d8d6ee19127eaba0eee43762d62a25817dbe0
MD5 4cd9fd3d71e3b9ae667e66a366d3ae61
BLAKE2b-256 82854931bfa41ef837b1544838e46e0556640d18114b3da9cf05e10defff00ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f21af27c5e001f0ba1b88c36a0936437dfe034c452548d998891c21125eb640f
MD5 4efad67f057ffc212f13a28e219b3b9d
BLAKE2b-256 6c3f8d433d964c6e476476ee53eae5fa77b9f16b38d312eb1571e9099a6a3b12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 544a47190a0d25971658a9365dba7095397b4ce3e897f7dd0a77ca2cf6fa984e
MD5 663ae8a6e1e5204cd87d59852f8da540
BLAKE2b-256 f3830250c49deefff15c46f5e590d8ee6abbd0f056e20b85994db55c16ac6ead

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.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.12.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19fa5bc4301a1ee55400d4a38a8ecf9522b0391fc31e6da5f4d68513fe5c0026
MD5 6687304eef92d2dfbbec9b149e1b7146
BLAKE2b-256 61e4a908d7b8db6e52ba2f80f6f0d0709ef9fdedb767db4307084331742b67f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46a616c0e13cff2de1761b011e0b14bb73b110182f009223f1453d505c9a975c
MD5 030d309ec10d0866ca3625e6bbb61cea
BLAKE2b-256 4dd2b1f809b815aaf682ddac9c57929149f740b90feeb4f8da2f535c196de821

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.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.12.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21d5b3793c6f5aecca595cd24164bf9d3c559e315ec684f912146fc4e769e367
MD5 78096878ec99b70ec4eb4e18574530ce
BLAKE2b-256 d67e88853ecae5b5456eb1a1d8a01cbd534e25b671735d5d974609cbae082542

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.12.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dccf8d4fb5b86d39c581a59463c596b1d09df976da26ff04ae219604223d502f
MD5 7ae78c839253a0eb5d2222fd7ae7b736
BLAKE2b-256 db3fb093e154e9752325d7459aa6dca43b7acbcaffa05133507e2403676e3e75

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_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.12.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a057cdb0401e42c84b6516c9b1635f7aedd5e430c6e388bd5f6bcd1d6a0686bb
MD5 0565e2f7f51a1e7416cce07df81a5443
BLAKE2b-256 af4814d952a73254b4b0e517141acd27979bd23948adaf197f6ca2dc722fde6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_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.12.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2dee7d740a2d5418d4f964f39ab8d89923e6b945850db833e798a1969b19542a
MD5 220f25a71d92c858f29299a54364f4ed
BLAKE2b-256 851a719b0f6498c003627e4b83b841bdcd48b11de8a9908a9051c4d2a0bc2245

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e956b3f053e474abae69ac693a52742109d860ac2375fe88e9387d3277f4c96c
MD5 c5d7465f9fef66de9aed9df4ef1380ea
BLAKE2b-256 6a2d76d39ab0beeb884d432096fe288c41850e37608e0145264081d0cb809f3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.12.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02e6466caa0222d5233b1f05640873671cd99549a5c5ba4c29151634a1e56080
MD5 87635659f88ae4d0567f6fe8884b708a
BLAKE2b-256 aad14a10d21cc97aa36f4019af24382b5b4dc5ea6444499883c1c1286c6089ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1d982a651253ffe8434d9934ff0c1089111d60502228464721a2a4587435e159
MD5 f82c642bc0fa2a2260732bc81bfd5057
BLAKE2b-256 a7d2e071753227c9e9f7f3550b983f30565f6e994581529815fa5a8879e7cd10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7635fe34246cd241c8e35eb83084e978b01b83d5ef7e5bf72a704c637f270017
MD5 87bbe0ac7562f87da49c91ce5c6d9a3d
BLAKE2b-256 a74b4931da26e0677880a9a533ef75ccbe564c091aa4a3579aed0355c7e06900

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 58d9ae5cf9246d102db2a2558b67fe7e73c533e5d769099747921232d88b9be2
MD5 49dfa2b02bd1dbf190b94c894ef1bf4c
BLAKE2b-256 384cfaacecf70a4e202a02f029ec6f6e04e910d95c4ef36d7d63b83b160f7f3e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.12.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.9 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.12.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b4c5a0413589aef936892fbfa94b7ff6f7dd09edf19b5a7b83896cc9d4e8c184
MD5 adb1ac20b6ed3e1ec5d95551a8778674
BLAKE2b-256 4d2710585a5a62ff6ebbefa3e836a3fd8c123e2ed0bbde8cfcdd7477032cd458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97fb05e1ddb7b71a054040af588b0634214ee87cea87900d309fafc16fd272a4
MD5 31384e6c53399e2f4bd7f8ccc888f5de
BLAKE2b-256 9b25ed3a0317f118131ee297de5936e1587e48b059e6438f4bbf92ef3bbc4927

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d5a3425a6c50fd8fbd991d8f085ddb504791dae6ef9cc3ab299fea2cb5374bef
MD5 ec0e337df1c08b7fef8597fce5642f22
BLAKE2b-256 4b94992de5d0fc9269a93ce62979aced028e0939d3477ea99d87fd0e22f44e8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7e2574cf4aa86065600b664a1ac7b8b8499107d102ecde836aaaa403fc4f1784
MD5 0baa8773ae4c3967985157602401b7a4
BLAKE2b-256 0c189c8cd7378272590a1eb0855b587f3a1fbd3492bd1612825d675320eeeb1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.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.12.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 095776b11bb45daf7c2973dd61cc472d7ea7f2eecfa454aef940b4675659b92f
MD5 714e026735481ed21ac70dc1f12b8373
BLAKE2b-256 8a521d5b80e990c2e9998e47be118c2dbabda75daa2a5f5ff978df1ed76d7f81

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efa22059c765b3d8778083805b199deaaf643db070f65426f87d274565ddf36a
MD5 22a36e018006a4c73a2a9d88dda2f4ea
BLAKE2b-256 eefa7e8c0d1d26a4b892344c743f17e2c8482f749b616cd651590bd60994b49f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.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.12.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edd84b0a323885493c893bad16098c5e3b3005d7caa995ae653da07373665d97
MD5 6046458c3f086a3485580e711433bd3e
BLAKE2b-256 4608862e65a1022cbfa2935e7b3f04cdaa73b0967ebf4762ddf509735da47d73

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.12.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 780b4469ee21cf62b1b2e8ada042941fd2525e45d5fb6a6901a9798a0e41153c
MD5 1eb2f6b80e1ad439c1994f70add89605
BLAKE2b-256 cab6ec87c56ed0fab59f8220f5b832d5c1dd374667bee73318a01392ccc8c23d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_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.12.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c988a4fc91856260355773bf9d32bebab2083d4c6df33fafeddf4330e5ae9139
MD5 c4eae73ed404a5df9a0eaef52c2b594a
BLAKE2b-256 5f62463c618a5a8a44bf6b087325353e13dbd5bc19c44cc06134d3c9eff0d04a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_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.12.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24081077b571ec4ee6d5d7ea0e49bc6830bf05b50c1005028523b9cd356209f3
MD5 9c5984683bc1995805df98268f852ad1
BLAKE2b-256 fdc4aa11749bc9d9c0539061d32f2c525d99e11588867d3d6e94693ccd4e0dd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39b343b6cb4b2c3dbc8d2d4c5ee915b6088e3b144ddf8305a57eaab16cf9fc74
MD5 2840a5bfc4bb596499d11992016dbae3
BLAKE2b-256 e753fe3fb50111e203da4e82b8694c29cbf44101cdbf1efd7ef721cdf85e0aca

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.12.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f9132c55d330f0a1d34ce6730a76805323a6250d97468a1ca766a883d6a9a25
MD5 b4d22d4d6e02786e1333db4c1ca7599f
BLAKE2b-256 909e9278b4160bf86346fc5f110b5daf07af629343bfcd04a9366d355bc6104e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9c4d984621ae17404c58f8d06ed8b025e167e52c0e6a511dfec83c37e9220cd
MD5 ff6d9c1ba528bdfc4aa141c7c4f9168a
BLAKE2b-256 8e41985b8786f7895f7a7f03f80b547e04a5b9f41187f43de386ad2f32b9f9fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 6938738e00d9eb6e04097b3f565097e20b0c398f9c58959a2bc64f7f6be3d9da
MD5 08150753d6860d79992853fad2aafbd4
BLAKE2b-256 ed21a7cbb1eacad92a840a62a22f49d98b423154da49874b787e24bb630f4689

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0f05b7b95f9f87254b53fa92048367a8232c26cee7fc8665e4337268c3919def
MD5 8dbfb22069f549bce1022f5de7eb4b0e
BLAKE2b-256 c949e101be3e62b6524ea8b271b2e949878c8b58c31a0dc5d30b90f4f5c980e7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.12.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.9 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.12.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 09227bd402caa4397ba1d6e239deea635703b042dd266a4092548661fb22b9c6
MD5 c72e69698cc2bda6a961a8c71177b7f6
BLAKE2b-256 51b384927233624d5e308e4739c748d2cb4ba46675efb7e021661c68b7a7b941

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3692d4ab36d44685f61326dca539975a4eda49b2a76f0a3df177d8a2c0de9d2
MD5 2c61915d8af0f1f6560f09962d0225a9
BLAKE2b-256 e46b2f8e0f7de4a5ac54258be885c2e735a315c71187481a7f3d655d650c5c4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 71cf1ea16acdebe9e2fb62ee7a77f8f70e877bebcbb33b34e660af2eb6d341d9
MD5 b006759c5b7c1a47c5d04590f3f56a4f
BLAKE2b-256 5e406bbe014b94d3cef718cfe0be41eb0cecf6fda4b1cd31ba1dddf1984afa08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 55a43be0e0fa956a919043c19d19bd988991d15c59f179d413fe5145ed9deb43
MD5 f1e8b3c5efd0c74087fbc277573ab0f4
BLAKE2b-256 456859168dd67d319a958c525a4eeada5d62a83f83a42b79f9b55917da70f1a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.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.12.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f43b773a4d4950606fb25568ecde5f25280daf8f97b87eb323e16ecd8177b328
MD5 bfff1146ae9bd9a0d7d88798054b2747
BLAKE2b-256 ef5fa27e284d37632c808eb7cd6c49178dd52354bfb290843e253af4bd46fa61

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 195adbb384d89d6c55e2fd71e7fb262010f3196e459aa2f3f45f31dd7185fe72
MD5 6fbb39c32058e34175df9ad744bc6900
BLAKE2b-256 92fcd2b4efecf81180c49da09ff97657e0517a5ea55a99b16a1adc56d2900c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.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.12.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5032cbffa245b4beba0067f8ed17392ef2501b346ae3c1f1d14b950edf4b6115
MD5 91cf703ab3ccc70d0c466890c5efd83b
BLAKE2b-256 156f5211f2e80d4e82ff793f214429cbc8a8a69ef7978fd299112ae1c5595ae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.12.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5385398d390c6571f0f2a7837e6ddde0c8b912dac096dc8c87208ce9aaaa7570
MD5 5cac6f14fd18d41c649d4c16248be83d
BLAKE2b-256 fd5bfba390383a82353b72c32b5d14f0f7669a542e7205c55f6d2ae6112369bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_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.12.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 acb63c5072c08058f8995404201a52fc4e1ecac105548a4d03c6c6934bda45a3
MD5 5a250cc1219e776a145779e250b37893
BLAKE2b-256 b891b57ea560a8ff54e0ebb131a62740501ff7f6ffa14dc16e9853a97289614c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_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.12.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85a54ce30345cff2c79cbcffa063f270ad1daedd0d0c3ff6e541d3c3ba4288cf
MD5 caffc545fc9e9f4c62c394cc2670575d
BLAKE2b-256 1e8f923ca60dcd814dba1772420c38c8b70e1fe4e6f0b5699bb3afcbe8c4bed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4b3334a8958b689f292d5ce8a928140ac98919b51e084f04bf0c14276e4c6ba
MD5 da40bed21b0b69e40091d33e16aea254
BLAKE2b-256 43b0148a34adc92f49582add349faaad9d8f4462a76cc30ad2f1d86bdba4fa44

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.12.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6906a7eb458731e3dd2495af1d0410e23a21a2a2b7ced535e6d5cd15cb69afc5
MD5 273c5fa06928ebdc1f583476221999ce
BLAKE2b-256 a37f7350c9a68952b52f669b50528b0e53fca2a9d633457fc2a53d8a5e4b1bb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b9a75e0385a861178adf59e86d6616cbd0d5adca7228dc9eeabf6f62cf5b0b1
MD5 773f04b524d013b25f282d3b5b90b756
BLAKE2b-256 dd4755413211ec32f76c39a6e4f88d024d2194fd4c23abe8102cdbcf28cf80eb

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 7957f5d768de14f6b2715303ccdf224b78416738ee95a028a2965c95f73afbfb
MD5 171a927cc320696424b5a2f0c1c275bb
BLAKE2b-256 2a7294c45478866bced213aa36cf3de08ed061434352c2b92584f4a1ef170697

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-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.12.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 296bf0fd4f678488670e262c87a3e4f91900b942d73ae38caa42a417e53643b1
MD5 3978e9ae647f2e2903a4eaa43d5b6adc
BLAKE2b-256 e7c9780b83ce66b5e1115b017fed1f4144ada00bf2e2406fa6c8809481ab0c29

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-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.12.2-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d7701769f110332cde45c41759cb2a497de8d2dca55e4c519a46aed5fbb19d1a
MD5 302f4b9f047797c38a9dcd7a682fb959
BLAKE2b-256 029f2be30d436ebf13d89d19abc8c6b1a4cdbef3f343daac10c3b89fd039a6ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-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.12.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a6eaec2ef658dd650c6eb9b36dff7a361ebd7d8bea990ce9d639b911673b2cb
MD5 eff58439147fb1734c7db87339ccfe89
BLAKE2b-256 2a0e8d5eff5de34846da426c93460c130672908cdf5fb1967cd23b3367c03e5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-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.12.2-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bd9a67cfc83e8453ef17ddd1c2c4ce4a74d448a197764efb54c29f29fb41f611
MD5 f063e92a7c3cc05e41f5f8c7c2d7f33d
BLAKE2b-256 9b80e512f552ef64dd43f0359633f59293515276ae47d853abc42eb914be1df5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-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.12.2-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 30bf15c1ecec2798b713d551df17f23401a3e3653ad9ed4e83ad1c2b06e86100
MD5 b72b33f616e9b73de189f2bfdf8ddc95
BLAKE2b-256 c3708faebb311218fb9d4c92549dc0283a2fb9082a585463153310f627c2f727

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-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.12.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c506bdc2f304051592c0d3b0e82eed309248ec10cdf802f13220251358375ea
MD5 045199ceca87bb4367c6ce6b39005981
BLAKE2b-256 37c31a60df1bfe4145552f0afd23aeeedfe060dd1db2fae1106c3fe9966265a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9f8177b24ccc0a843e85932b1088c5e467a7dd7a181c13f84c684b796bea815
MD5 77bb118d98c5b67acc993e4f75c3c194
BLAKE2b-256 d40cbeb68a732668f29e2d1ac24100c70ab83694b111291a855d7107fdd15d17

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-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.12.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17e1a3a8b4b5125cfb63a6990459b25b87ea769bdaf90d05bb143f8febef076a
MD5 770b7f4a4f82143f12ed36d217eed8d6
BLAKE2b-256 7f0b22a4299b534a24c660a0bba597834320943b76692d65ec648767833adfdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.12.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e88c6e68fca301722fa3ab7fd3ca46998012c14ada577bc1e2c2fc04f2067ca6
MD5 75bda070e978e75c3050ef58fcc75ede
BLAKE2b-256 d3632732e64ae6e42c6a72cb66549d968fb85be17456780a0a080328781f86cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_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.12.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dfb337f1832c1231e3d5621bd0ebebb854e46036aedae3e6a49c1fc08f16f249
MD5 cd6185957bd33d73b9d0014d555b979f
BLAKE2b-256 97392f5c3973abda8cf80666922204bab408f8b8538a010c2797b38edf12d80c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_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.12.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a11e1d036170bbafa43a9e63d8c309273564ec5bdfc5439062f439d1a16965a
MD5 8b3bde6c760daf8e4d5f6aefc5136119
BLAKE2b-256 cff84236af04f4de6609a7b392fbad010caf4dd69694399d7dac4db188408887

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a749fd2690f24ef256b264a781487746bbb95344364fe8fe356f0eef7ef206ba
MD5 61851d5ef9cde0bc89cbfcdd1c28909a
BLAKE2b-256 f4ae2133b1a9a96e23e0d4f8b050681aee12560f7fc37982f815c8b86b2a3978

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.12.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42e7f747b55529a6d0d1588695d71025e884ab48664dca54b840413dea4588d8
MD5 b04d8767b4de2b422f01674fc5b32640
BLAKE2b-256 f162ba3fc527043f3aedc9260e249aea7ad284878fa97e57e2fdf3b8c253bed8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-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.12.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.12.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4c852cd8bed1516a64fd6e2d4c6f270d4356196ee03fda2af1e5a9e13c34643
MD5 9cff0b6cc1b1f009101d61b358cf1f03
BLAKE2b-256 1567e35d9193badb9e5c2271af2619fcdc5c5bfc3eded2f1290aa623cf12ac64

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.12.2-cp39-cp39-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 AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page