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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

rapidfuzz-3.13.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-3.13.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

rapidfuzz-3.13.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-3.13.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

rapidfuzz-3.13.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-3.13.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

rapidfuzz-3.13.0-cp313-cp313-win_arm64.whl (859.0 kB view details)

Uploaded CPython 3.13 Windows ARM64

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

rapidfuzz-3.13.0-cp313-cp313-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

rapidfuzz-3.13.0-cp313-cp313-musllinux_1_2_s390x.whl (3.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.13.0-cp313-cp313-musllinux_1_2_i686.whl (7.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

rapidfuzz-3.13.0-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.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

rapidfuzz-3.13.0-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.13.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.13+ x86-64

rapidfuzz-3.13.0-cp312-cp312-win_arm64.whl (860.1 kB view details)

Uploaded CPython 3.12 Windows ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

rapidfuzz-3.13.0-cp312-cp312-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

rapidfuzz-3.13.0-cp312-cp312-musllinux_1_2_s390x.whl (3.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.13.0-cp312-cp312-musllinux_1_2_i686.whl (7.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rapidfuzz-3.13.0-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.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rapidfuzz-3.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rapidfuzz-3.13.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.13+ x86-64

rapidfuzz-3.13.0-cp311-cp311-win_arm64.whl (866.6 kB view details)

Uploaded CPython 3.11 Windows ARM64

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

Uploaded CPython 3.11 Windows x86-64

rapidfuzz-3.13.0-cp311-cp311-win32.whl (1.8 MB view details)

Uploaded CPython 3.11 Windows x86

rapidfuzz-3.13.0-cp311-cp311-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

rapidfuzz-3.13.0-cp311-cp311-musllinux_1_2_s390x.whl (3.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.13.0-cp311-cp311-musllinux_1_2_i686.whl (7.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rapidfuzz-3.13.0-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.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rapidfuzz-3.13.0-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.13.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

rapidfuzz-3.13.0-cp310-cp310-win_arm64.whl (865.6 kB view details)

Uploaded CPython 3.10 Windows ARM64

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

Uploaded CPython 3.10 Windows x86-64

rapidfuzz-3.13.0-cp310-cp310-win32.whl (1.8 MB view details)

Uploaded CPython 3.10 Windows x86

rapidfuzz-3.13.0-cp310-cp310-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

rapidfuzz-3.13.0-cp310-cp310-musllinux_1_2_s390x.whl (3.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.13.0-cp310-cp310-musllinux_1_2_i686.whl (7.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rapidfuzz-3.13.0-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.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rapidfuzz-3.13.0-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.13.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

rapidfuzz-3.13.0-cp39-cp39-win_arm64.whl (867.2 kB view details)

Uploaded CPython 3.9 Windows ARM64

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

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-3.13.0-cp39-cp39-win32.whl (1.8 MB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-3.13.0-cp39-cp39-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

rapidfuzz-3.13.0-cp39-cp39-musllinux_1_2_s390x.whl (3.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

rapidfuzz-3.13.0-cp39-cp39-musllinux_1_2_i686.whl (7.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rapidfuzz-3.13.0-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.13.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rapidfuzz-3.13.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rapidfuzz-3.13.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

rapidfuzz-3.13.0-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.13.0.tar.gz.

File metadata

  • Download URL: rapidfuzz-3.13.0.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.13.0.tar.gz
Algorithm Hash digest
SHA256 d2eaf3839e52cbcc0accbe9817a67b4b0fcf70aaeb229cfddc1c28061f9ce5d8
MD5 b283142dd58e86344624a8278dd8e8e5
BLAKE2b-256 edf66895abc3a3d056b9698da3199b04c0e56226d530ae44a470edabf8b664f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1f219f1e3c3194d7a7de222f54450ce12bc907862ff9a8962d83061c1f923c86
MD5 735049ad0d024c83776170cb1022b9e6
BLAKE2b-256 c1c5c243b05a15a27b946180db0d1e4c999bef3f4221505dff9748f1f6c917be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfcccc08f671646ccb1e413c773bb92e7bba789e3a1796fd49d23c12539fe2e4
MD5 13433293dccf384847817eadac3030db
BLAKE2b-256 6affaf2cb1d8acf9777d52487af5c6b34ce9d13381a753f991d95ecaca813407

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 202a87760f5145140d56153b193a797ae9338f7939eb16652dd7ff96f8faf64c
MD5 eb6e97b34a637d81c181fe9e5b72bccb
BLAKE2b-256 daf09f2a9043bfc4e66da256b15d728c5fc2d865edf0028824337f5edac36783

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 558bf526bcd777de32b7885790a95a9548ffdcce68f704a81207be4a286c1095
MD5 e85efb71844c2f32780f1b7ed23e228b
BLAKE2b-256 6ac13da3466cc8a9bfb9cd345ad221fac311143b6a9664b5af4adb95b5e6ce01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7a217310429b43be95b3b8ad7f8fc41aba341109dc91e978cd7c703f928c58f
MD5 6c15f09b4f2dbc14c10afa850bed96f3
BLAKE2b-256 a26ca0b819b829e20525ef1bd58fc776fb8d07a0c38d819e63ba2b7c311a2ed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1ba007f4d35a45ee68656b2eb83b8715e11d0f90e5b9f02d615a8a321ff00c27
MD5 7bc6e08bf4bda569e73e182409cea287
BLAKE2b-256 88df6060c5a9c879b302bd47a73fc012d0db37abf6544c57591bcbc3459673bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7ac21489de962a4e2fc1e8f0b0da4aa1adc6ab9512fd845563fecb4b4c52093a
MD5 1355ea7f10b702e0a685725a20ec43df
BLAKE2b-256 9f8d632d895cdae8356826184864d74a5f487d40cb79f50a9137510524a1ba86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c0efa73afbc5b265aca0d8a467ae2a3f40d6854cbe1481cb442a62b7bf23c99
MD5 d6526e6532352eef47a52dea85074256
BLAKE2b-256 e702bd8b70cd98b7a88e1621264778ac830c9daa7745cd63e838bd773b1aeebd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6af42f2ede8b596a6aaf6d49fdee3066ca578f4856b85ab5c1e2145de367a12d
MD5 ff5b047ea2db3be4b867651b207bb026
BLAKE2b-256 f0500062a959a2d72ed17815824e40e2eefdb26f6c51d627389514510a7875f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c99b76b93f7b495eee7dcb0d6a38fb3ce91e72e99d9f78faa5664a881cb2b7d
MD5 01650c7345f8b46dfc1f6f5331ea77f9
BLAKE2b-256 c4486f795e793babb0120b63a165496d64f989b9438efbeed3357d9a226ce575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdb33ee9f8a8e4742c6b268fa6bd739024f34651a06b26913381b1413ebe7590
MD5 30fd53c3304ee3fe010e9cccd8cb6b1a
BLAKE2b-256 dbd7ded50603dddc5eb182b7ce547a523ab67b3bf42b89736f93a230a398a445

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe5790a36d33a5d0a6a1f802aa42ecae282bf29ac6f7506d8e12510847b82a45
MD5 f0be3c951ba1d3e19095ba23ad239af2
BLAKE2b-256 d5e1f5d85ae3c53df6f817ca70dbdd37c83f31e64caced5bb867bec6b43d1fdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a6dd36d4916cf57ddb05286ed40b09d034ca5d4bca85c17be0cb6a21290597d9
MD5 c2b20eafd09588049a06d89620de1f7c
BLAKE2b-256 4864e49988ee08ddb6ca8757785577da0fe2302cf759a5b246f50eded8d66fdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30fd1451f87ccb6c2f9d18f6caa483116bbb57b5a55d04d3ddbd7b86f5b14998
MD5 7452d863b587ebe4bfb67a6259721614
BLAKE2b-256 1d55a965d98d5acf4a27ddd1d6621f086231dd243820e8108e8da7fa8a01ca1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 573ad267eb9b3f6e9b04febce5de55d8538a87c56c64bf8fd2599a48dc9d8b77
MD5 6041d9bad3a143be0b7fd13e0f90710b
BLAKE2b-256 58c72361a8787f12166212c7d4ad4d2a01b640164686ea39ee26b24fd12acd3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fd05336db4d0b8348d7eaaf6fa3c517b11a56abaa5e89470ce1714e73e4aca7
MD5 298a31e5da73cdeca55d02dcdeef64ce
BLAKE2b-256 d0a1ef21859170e9d7e7e7ee818e9541b71da756189586f87e129c7b13c79dd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a50856f49a4016ef56edd10caabdaf3608993f9faf1e05c3c7f4beeac46bd12a
MD5 d4671a4626981752cc84238bbff322e5
BLAKE2b-256 aefffde4ebbc55da03a6319106eb287d87e2bc5e177e0c90c95c735086993c40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ccbd0e7ea1a216315f63ffdc7cd09c55f57851afc8fe59a74184cb7316c0598b
MD5 76a749c7258040f65d58473968d69e9b
BLAKE2b-256 672876470c1da02ea9c0ff299aa06d87057122e94b55db60c4f57acbce7b0432

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3f32f15bacd1838c929b35c84b43618481e1b3d7a61b5ed2db0291b70ae88b53
MD5 370d12aa0e4ebe5b35fa335b2063d70c
BLAKE2b-256 60b105cd5e697c00cd46d7791915f571b38c8531f714832eff2c5e34537c49ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9a7c6232be5f809cd39da30ee5d24e6cadd919831e6020ec6c2391f4c3bc9264
MD5 79fbea10d6d95092dc921731e2106b4b
BLAKE2b-256 96e3a98c25c4f74051df4dcf2f393176b8663bfd93c7afc6692c84e96de147a2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.13.0-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.13.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0e1d08cb884805a543f2de1f6744069495ef527e279e05370dd7c83416af83f8
MD5 181d106481862489cfa3bae1fcfd8c89
BLAKE2b-256 0cf35e0c6ae452cbb74e5436d3445467447e8c32f3021f48f93f15934b8cffc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e05752418b24bbd411841b256344c26f57da1148c5509e34ea39c7eb5099ab72
MD5 3b8710a2b3db1cc19f9a38f0200ca2f1
BLAKE2b-256 0fa845bba94c2489cb1ee0130dcb46e1df4fa2c2b25269e21ffd15240a80322b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ae4574cb66cf1e85d32bb7e9ec45af5409c5b3970b7ceb8dea90168024127566
MD5 ef07f6e00b2a782f3c3910048c7445bc
BLAKE2b-256 0521ab4ad7d7d0f653e6fe2e4ccf11d0245092bef94cdff587a21e534e57bda8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c33f9c841630b2bb7e69a3fb5c84a854075bb812c47620978bddc591f764da3d
MD5 dc942ecf60ebe0caa68b6627d64ff834
BLAKE2b-256 8af27d69e7bf4daec62769b11757ffc31f69afb3ce248947aadbb109fefd9f65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11b125d8edd67e767b2295eac6eb9afe0b1cdc82ea3d4b9257da4b8e06077798
MD5 8443df390da0088329b342a7f3b57895
BLAKE2b-256 6b64e9804212e3286d027ac35bbb66603c9456c2bce23f823b67d2f5cabc05c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1b065f370d54551dcc785c6f9eeb5bd517ae14c983d2784c064b3aa525896df
MD5 87c03824cf0ad5032afc9c113b95de59
BLAKE2b-256 f9465179c583b75fce3e65a5cd79a3561bd19abd54518cb7c483a89b284bf2b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1343d745fbf4688e412d8f398c6e6d6f269db99a54456873f232ba2e7aeb4939
MD5 b6d9288b0a1d458ae3375f16c3d5e1cf
BLAKE2b-256 9bdf6096bc669c1311568840bdcbb5a893edc972d1c8d2b4b4325c21d54da5b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2b3dd5d206a12deca16870acc0d6e5036abeb70e3cad6549c294eff15591527
MD5 fd972ab185848a181186b8df14b79140
BLAKE2b-256 de0c9e58d4887b86d7121d1c519f7050d1be5eb189d8a8075f5417df6492b4f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 461fd13250a2adf8e90ca9a0e1e166515cbcaa5e9c3b1f37545cbbeff9e77f6b
MD5 aeda0e09c40cab06be74b7d9d3ff382d
BLAKE2b-256 660abebada332854e78e68f3d6c05226b23faca79d71362509dbcf7b002e33b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df8e8c21e67afb9d7fbe18f42c6111fe155e801ab103c81109a61312927cc611
MD5 264e3c61930071251fa704fd7de808c0
BLAKE2b-256 095dca8698e452b349c8313faf07bfa84e7d1c2d2edf7ccc67bcfc49bee1259a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0da54aa8547b3c2c188db3d1c7eb4d1bb6dd80baa8cdaeaec3d1da3346ec9caa
MD5 1da8245aeec260b0a6370d44bb759a9b
BLAKE2b-256 59cfc3ac8c80d8ced6c1f99b5d9674d397ce5d0e9d0939d788d67c010e19c65f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57c390336cb50d5d3bfb0cfe1467478a15733703af61f6dffb14b1cd312a6fae
MD5 dc978d12bce739f1545a84aef2ade8ca
BLAKE2b-256 0af5d0b48c6b902607a59fd5932a54e3518dae8223814db8349b0176e6e9444b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 09e908064d3684c541d312bd4c7b05acb99a2c764f6231bd507d4b4b65226c23
MD5 13d641c355ff8189f1bb5d37464d908a
BLAKE2b-256 0a76606e71e4227790750f1646f3c5c873e18d6cfeb6f9a77b2b8c4dec8f0f66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 65cc97c2fc2c2fe23586599686f3b1ceeedeca8e598cfcc1b7e56dc8ca7e2aa7
MD5 63a5b0d53a66c9c68288455fe7039542
BLAKE2b-256 765e3f0fb88db396cb692aefd631e4805854e02120a2382723b90dcae720bcc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6e2065f68fb1d0bf65adc289c1bdc45ba7e464e406b319d67bb54441a1b9da9e
MD5 3601cfc0fc4d9087d08a4d22526d6b77
BLAKE2b-256 03255ee7ab6841ca668567d0897905eebc79c76f6297b73bf05957be887e9c74

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.13.0-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.13.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4671ee300d1818d7bdfd8fa0608580d7778ba701817216f0c17fb29e6b972514
MD5 4a3ecb19b78d679b5128f35db09d8796
BLAKE2b-256 8e83fa33f61796731891c3e045d0cbca4436a5c436a170e7f04d42c2423652c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b836f486dba0aceb2551e838ff3f514a38ee72b015364f739e526d720fdb823a
MD5 797430819661e18447518bb924261b02
BLAKE2b-256 e97df4642eaaeb474b19974332f2a58471803448be843033e5740965775760a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 98b8107ff14f5af0243f27d236bcc6e1ef8e7e3b3c25df114e91e3a99572da73
MD5 aa374d17196542d389911e7978e5fece
BLAKE2b-256 6f985a3a14701b5eb330f444f7883c9840b43fb29c575e292e09c90a270a6e07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 11b47b40650e06147dee5e51a9c9ad73bb7b86968b6f7d30e503b9f8dd1292db
MD5 520dc3e6f07b3ff61516f49f9404f5ba
BLAKE2b-256 5df36c0750e484d885a14840c7a150926f425d524982aca989cdda0bb3bdfa57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 694eb531889f71022b2be86f625a4209c4049e74be9ca836919b9e395d5e33b3
MD5 2760ce60b731fdbbfc2b3b7fe339de5f
BLAKE2b-256 9bbe0872f6a56c0f473165d3b47d4170fa75263dc5f46985755aa9bf2bbcdea1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f5fe634c9482ec5d4a6692afb8c45d370ae86755e5f57aa6c50bfe4ca2bdd87
MD5 e015733d37f7abca7fc9a82c4ab35929
BLAKE2b-256 cd8d55fdf4387dec10aa177fe3df8dbb0d5022224d95f48664a21d6b62a5299d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d18228a2390375cf45726ce1af9d36ff3dc1f11dce9775eae1f1b13ac6ec50f
MD5 41d5e674d4e4ba59fc15c40307c3d83d
BLAKE2b-256 4e20e62b4d13ba851b0f36370060025de50a264d625f6b4c32899085ed51f980

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9d824de871daa6e443b39ff495a884931970d567eb0dfa213d234337343835f
MD5 8ab8f563038221bb10b5f8f131a2a1c3
BLAKE2b-256 b7e479ed7e4fa58f37c0f8b7c0a62361f7089b221fe85738ae2dbcfb815e985a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1dc82b6ed01acb536b94a43996a94471a218f4d89f3fdd9185ab496de4b2a981
MD5 9ecec6e269e43ae32b86a2417024b7fb
BLAKE2b-256 1e7d14da291b0d0f22262d19522afaf63bccf39fc027c981233fb2137a57b71f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed6f416bda1c9133000009d84d9409823eb2358df0950231cc936e4bf784eb97
MD5 76f480a028e72b314a076233f84fa95f
BLAKE2b-256 5d77d9a90b39c16eca20d70fec4ca377fbe9ea4c0d358c6e4736ab0e0e78aaf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d4e13593d298c50c4f94ce453f757b4b398af3fa0fd2fde693c3e51195b7f69
MD5 5f1e7518c1ced1025ef3c38cec5c92a5
BLAKE2b-256 0709de8069a4599cc8e6d194e5fa1782c561151dea7d5e2741767137e2a8c1f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fd0975e015b05c79a97f38883a11236f5a24cca83aa992bd2558ceaa5652b26
MD5 acc17f0ef2eda780d765b3a591139fe1
BLAKE2b-256 b7531f7eb7ee83a06c400089ec7cb841cbd581c2edd7a4b21eb2f31030b88daa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a1a6a906ba62f2556372282b1ef37b26bca67e3d2ea957277cfcefc6275cca7
MD5 3f525e43a67249c539b7e1bc8c9c0206
BLAKE2b-256 134ba326f57a4efed8f5505b25102797a58e37ee11d94afd9d9422cb7c76117e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f70f646751b6aa9d05be1fb40372f006cc89d6aad54e9d79ae97bd1f5fce5203
MD5 44294cc9e89ed3232767174b33b8796c
BLAKE2b-256 3b740a3de18bc2576b794f41ccd07720b623e840fda219ab57091897f2320fdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9093cdeb926deb32a4887ebe6910f57fbcdbc9fbfa52252c10b56ef2efb0289f
MD5 40a860e9cb0bb949e10fb38f06672a10
BLAKE2b-256 c95ad00e1f63564050a20279015acb29ecaf41646adfacc6ce2e1e450f7f2633

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.13.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.8 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.13.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b5104b62711565e0ff6deab2a8f5dbf1fbe333c5155abe26d2cfd6f1849b6c87
MD5 679d711dffa4279c4c4801dc3b9f156d
BLAKE2b-256 75ee9d4ece247f9b26936cdeaae600e494af587ce9bf8ddc47d88435f05cfd05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7f4c65facdb94f44be759bbd9b6dda1fa54d0d6169cdf1a209a5ab97d311a75
MD5 82b1562b04b5c20b80aa426303349890
BLAKE2b-256 ccdfc3c308a106a0993befd140a414c5ea78789d201cf1dfffb8fd9749718d4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5dc71ef23845bb6b62d194c39a97bb30ff171389c9812d83030c1199f319098c
MD5 09e3bfcbdfa6c6cf519ff8724370c806
BLAKE2b-256 55fd460e78438e7019f2462fe9d4ecc880577ba340df7974c8a4cfe8d8d029df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a9ad1f37894e3ffb76bbab76256e8a8b789657183870be11aa64e306bb5228fd
MD5 1eaaa39f18622099a00ff9125061cd1b
BLAKE2b-256 c19685f7536fbceb0aa92c04a1c37a3fc4fcd4e80649e9ed0fb585382df82edc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25343ccc589a4579fbde832e6a1e27258bfdd7f2eb0f28cb836d6694ab8591fc
MD5 c66c722e22ca3636c96a3a6a699959e6
BLAKE2b-256 8ecd7040ba538fc6a8ddc8816a05ecf46af9988b46c148ddd7f74fb0fb73d012

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d25fdbce6459ccbbbf23b4b044f56fbd1158b97ac50994eaae2a1c0baae78301
MD5 4bd90741000f80fab7fad10b301f2a3d
BLAKE2b-256 607d030d68d9a653c301114101c3003b31ce01cf2c3224034cd26105224cd249

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b6f913ee4618ddb6d6f3e387b76e8ec2fc5efee313a128809fbd44e65c2bbb2
MD5 ef789d9aabf4fdf77f03d54817ca3760
BLAKE2b-256 3d2c4b2f8aafdf9400e5599b6ed2f14bc26ca75f5a923571926ccbc998d4246a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5158da7f2ec02a930be13bac53bb5903527c073c90ee37804090614cab83c29e
MD5 92716cc6721e060fbfbf3c7bd6617255
BLAKE2b-256 27ae0d933e660c06fcfb087a0d2492f98322f9348a28b2cc3791a5dbadf6e6fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fedd316c165beed6307bf754dee54d3faca2c47e1f3bcbd67595001dfa11e969
MD5 3639f7aeb7d276dec7abe128c716b380
BLAKE2b-256 514412fdd12a76b190fe94bf38d252bb28ddf0ab7a366b943e792803502901a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bef86df6d59667d9655905b02770a0c776d2853971c0773767d5ef8077acd624
MD5 fc3c9414dcd10e29720b268584dc8bfe
BLAKE2b-256 46817a7e78f977496ee2d613154b86b203d373376bcaae5de7bde92f3ad5a192

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98e0bfa602e1942d542de077baf15d658bd9d5dcfe9b762aff791724c1c38b70
MD5 ded2c5f6fae0d640700f5362c7066e1d
BLAKE2b-256 965c691c5304857f3476a7b3df99e91efc32428cbe7d25d234e967cc08346c13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7b3eda607a019169f7187328a8d1648fb9a90265087f6903d7ee3a8eee01805
MD5 85e829aad6fcfefa60e38708a0ccb99d
BLAKE2b-256 756762e57896ecbabe363f027d24cc769d55dd49019e576533ec10e492fcd8a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d395a5cad0c09c7f096433e5fd4224d83b53298d53499945a9b0e5a971a84f3a
MD5 111c28530747ae5ed66e4125ddcb69b0
BLAKE2b-256 87179be9eff5a3c7dfc831c2511262082c6786dca2ce21aa8194eef1cb71d67a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c523620d14ebd03a8d473c89e05fa1ae152821920c3ff78b839218ff69e19ca3
MD5 b9c31801a363981755d9a8b7b8b3b2bc
BLAKE2b-256 6823f41c749f2c61ed1ed5575eaf9e73ef9406bfedbf20a3ffa438d15b5bf87e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e8ddb58961401da7d6f55f185512c0d6bd24f529a637078d41dd8ffa5a49c107
MD5 1b6fa84ffd78698c958f4bddb9311ccd
BLAKE2b-256 a7687248addf95b6ca51fc9d955161072285da3059dd1472b0de773cff910963

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.13.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 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.13.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3abe6a4e8eb4cfc4cda04dd650a2dc6d2934cbdeda5def7e6fd1c20f6e7d2a0b
MD5 2d5299faa9e2df460df481785ed4a2e8
BLAKE2b-256 b3571a152a07883e672fc117c7f553f5b933f6e43c431ac3fd0e8dae5008f481

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93a755266856599be4ab6346273f192acde3102d7aa0735e2f48b456397a041f
MD5 185511560ecca12520a842a3f4627112
BLAKE2b-256 8389d3bd47ec9f4b0890f62aea143a1e35f78f3d8329b93d9495b4fa8a3cbfc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5435fcac94c9ecf0504bf88a8a60c55482c32e18e108d6079a0089c47f3f8cf6
MD5 6ef9caa93965ba5f2aa88dd1a8bc315c
BLAKE2b-256 a7bd0732632bd3f906bf613229ee1b7cbfba77515db714a0e307becfa8a970ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fd742c03885db1fce798a1cd87a20f47f144ccf26d75d52feb6f2bae3d57af05
MD5 29eff0f7226d9e7ec797da14b2c7d8ff
BLAKE2b-256 e1cfebade4009431ea8e715e59e882477a970834ddaacd1a670095705b86bd0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5280be8fd7e2bee5822e254fe0a5763aa0ad57054b85a32a3d9970e9b09bbcbf
MD5 36bf5c67fc1b13a9617e5f582eef69e5
BLAKE2b-256 03165acf15df63119d5ca3d9a54b82807866ff403461811d077201ca351a40c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1bdd2e6d0c5f9706ef7595773a81ca2b40f3b33fd7f9840b726fb00c6c4eb2e
MD5 199a805bc5baea3441444227a63dd61c
BLAKE2b-256 251e06d8932a72fa9576095234a15785136407acf8f9a7dbc8136389a3429da1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9256218ac8f1a957806ec2fb9a6ddfc6c32ea937c0429e88cf16362a20ed8602
MD5 cef14f89c014afd0119a0642d2649689
BLAKE2b-256 38d45cfbc9a997e544f07f301c54d42aac9e0d28d457d543169e4ec859b8ce0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d8cf5f7cd6e4d5eb272baf6a54e182b2c237548d048e2882258336533f3f02b7
MD5 698765a3ac8bf61f4735c7619d87490f
BLAKE2b-256 6fd808823d496b7dd142a7b5d2da04337df6673a14677cfdb72f2604c64ead69

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef0f5f03f61b0e5a57b1df7beafd83df993fd5811a09871bad6038d08e526d0d
MD5 86c0e072bd213bb2174759ca9f4a3183
BLAKE2b-256 e2b849479fe6f06b06cd54d6345ed16de3d1ac659b57730bdbe897df1e059471

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e297c09972698c95649e89121e3550cee761ca3640cd005e24aaa2619175464e
MD5 e402a01a24e5a45399787665b93d9a76
BLAKE2b-256 dc9a765beb9e14d7b30d12e2d6019e8b93747a0bedbc1d0cce13184fa3825426

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d7cec4242d30dd521ef91c0df872e14449d1dffc2a6990ede33943b0dae56c3
MD5 9ec52b688f9568e9b0295c5d7e1782f7
BLAKE2b-256 12ae15c71d68a6df6b8e24595421fdf5bcb305888318e870b7be8d935a9187ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85c9a131a44a95f9cac2eb6e65531db014e09d89c4f18c7b1fa54979cb9ff1f3
MD5 369c0c0b97566f7fa3d5a5ccff36e16e
BLAKE2b-256 f038c4c404b13af0315483a6909b3a29636e18e1359307fb74a333fdccb3730d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aafc42a1dc5e1beeba52cd83baa41372228d6d8266f6d803c16dbabbcc156255
MD5 ed596bd3499776e3634ecf24436c1641
BLAKE2b-256 de27ca10b3166024ae19a7e7c21f73c58dfd4b7fef7420e5497ee64ce6b73453

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 435071fd07a085ecbf4d28702a66fd2e676a03369ee497cc38bcb69a46bc77e2
MD5 225f7d657df8b3ce76499616281195c6
BLAKE2b-256 8910ce1083b678db3e39b9a42244471501fb4d925b7cab0a771790d2ca3b3c27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 624a108122039af89ddda1a2b7ab2a11abe60c1521956f142f5d11bcd42ef138
MD5 f2b8d5bdfe44a560e792395323ce4833
BLAKE2b-256 aa0fb6a37389f33c777de96b26f0ae1362d3524cad3fb84468a46346c24b6a98

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rapidfuzz-3.13.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 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.13.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 45dd4628dd9c21acc5c97627dad0bb791764feea81436fb6e0a06eef4c6dceaa
MD5 b8a1d5875ee7d2e2b06516cf83d7c095
BLAKE2b-256 d7b03ad076cd513f5562b99c9e62760f7c451cd29f3d47d80ae40c8070e813f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d21f188f6fe4fbf422e647ae9d5a68671d00218e187f91859c963d0738ccd88c
MD5 ef6f8dcd262884d5066f296f6a793fdb
BLAKE2b-256 5cd7a126c0f4ae2b7927d2b7a4206e2b98db2940591d4edcb350d772b97d18ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f4797f821dc5d7c2b6fc818b89f8a3f37bcc900dd9e4369e6ebf1e525efce5db
MD5 851722ccaac7a398b058bfb96b0723dd
BLAKE2b-256 9bdae4928f158c5cebe2877dc11dea62d230cc02bd977992cf4bf33c41ae6ffe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e62779c6371bd2b21dbd1fdce89eaec2d93fd98179d36f61130b489f62294a92
MD5 b69a5c9cfe1ccac19eb9b5c8244092f8
BLAKE2b-256 d06422aab1c17c96ae344a06e5be692a62977d6acd5dd7f8470a8e068111282a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc269e74cad6043cb8a46d0ce580031ab642b5930562c2bb79aa7fbf9c858d26
MD5 79aa65409c0f98547bec8a193a91fc6c
BLAKE2b-256 f0445b860b4dcab7ee6f4ded818d5b0bf548772519386418ab84e9f395c7e995

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 200030dfc0a1d5d6ac18e993c5097c870c97c41574e67f227300a1fb74457b1d
MD5 0ae3dc9d2f0fb60ed7f31c8a4c899639
BLAKE2b-256 6f5a19c03bc9a550f63875d8db25c3d9b2e6d98757bd28ea1a1fd40ec6b22ee1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9327a4577f65fc3fb712e79f78233815b8a1c94433d0c2c9f6bc5953018b3565
MD5 7102fdb0bcec3352eb00b811a4a76518
BLAKE2b-256 5e00861a4601e4685efd8161966cf35728806fb9df112b6951585bb194f74379

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48719f7dcf62dfb181063b60ee2d0a39d327fa8ad81b05e3e510680c44e1c078
MD5 ef3fd44386ba6bb15b2c902979f7976e
BLAKE2b-256 931b7f5841392bae67e645dc39e49b37824028a400c489e8afb16eb1e5095da8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 adb40ca8ddfcd4edd07b0713a860be32bdf632687f656963bcbce84cea04b8d8
MD5 8aaef27b883b1392dfcff8d721c3d8f4
BLAKE2b-256 480d366b972b54d7d6edd83c86ebcdf5ca446f35fba72d8b283a3629f0677b7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f338e71c45b69a482de8b11bf4a029993230760120c8c6e7c9b71760b6825a1
MD5 7d6be62fa49b31af1b9bf521c8af310c
BLAKE2b-256 ae8ee1eca4b25ecdfed51750008e9b0f5d3539bbd897f8ea14f525738775d1b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a79a2f07786a2070669b4b8e45bd96a01c788e7a3c218f531f3947878e0f956
MD5 aaab07272f8cf2b4b835ce9de41fc66f
BLAKE2b-256 e33c195f8c4b4a76e00c4d2f5f4ebec2c2108a81afbb1339a3378cf9b370bd02

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.13.0-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.13.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d9d7f84c8e992a8dbe5a3fdbea73d733da39bf464e62c912ac3ceba9c0cff93
MD5 7d184b933c05909b5b29f64c7a54155d
BLAKE2b-256 f420189c716da9e3c5a907b4620b6c326fc09c47dab10bf025b9482932b972ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rapidfuzz-3.13.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc64da907114d7a18b5e589057e3acaf2fec723d31c49e13fedf043592a3f6a7
MD5 3c9458d27dfeee9c6d755b7d8e1a7134
BLAKE2b-256 2423fceeab4ed5d0ecddd573b19502547fdc9be80418628bb8947fc22e905844

See more details on using hashes here.

Provenance

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