Skip to main content

rapid fuzzy string matching

Project description

RapidFuzz

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

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

DescriptionInstallationUsageLicense


Description

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

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

Requirements

Installation

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

with pip

RapidFuzz can be installed with pip the following way:

pip install rapidfuzz

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

:heavy_multiplication_x:   failure "ImportError: DLL load failed"

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

with conda

RapidFuzz can be installed with conda:

conda install -c conda-forge rapidfuzz

from git

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

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

Usage

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

Scorers

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

Simple Ratio

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

Partial Ratio

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

Token Sort Ratio

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

Token Set Ratio

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

Weighted Ratio

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

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

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

Quick Ratio

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

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

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

Process

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

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

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

The full documentation of processors can be found here

Benchmark

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

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

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

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

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

Benchmark Scorer

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

cdist(samples, words, scorer=scorer)

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

Benchmark cdist

Support the project

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

Support the project through GitHub Sponsors or via PayPal:

.

License

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

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rapidfuzz-3.14.5.tar.gz (57.9 MB view details)

Uploaded Source

Built Distributions

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

rapidfuzz-3.14.5-pp311-pypy311_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

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

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

rapidfuzz-3.14.5-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

rapidfuzz-3.14.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

rapidfuzz-3.14.5-cp314-cp314t-win_arm64.whl (855.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ riscv64

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

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

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

rapidfuzz-3.14.5-cp314-cp314-win_arm64.whl (835.0 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ riscv64

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

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

rapidfuzz-3.14.5-cp313-cp313t-win_arm64.whl (832.9 kB view details)

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rapidfuzz-3.14.5-cp313-cp313t-manylinux_2_39_riscv64.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.39+ riscv64

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

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

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

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

rapidfuzz-3.14.5-cp313-cp313-win_arm64.whl (812.6 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ riscv64

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

rapidfuzz-3.14.5-cp312-cp312-win_arm64.whl (813.1 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ riscv64

rapidfuzz-3.14.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

rapidfuzz-3.14.5-cp311-cp311-win_arm64.whl (816.8 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ riscv64

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

rapidfuzz-3.14.5-cp310-cp310-win_arm64.whl (816.6 kB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rapidfuzz-3.14.5-cp310-cp310-musllinux_1_2_riscv64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rapidfuzz-3.14.5-cp310-cp310-manylinux_2_39_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ riscv64

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

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

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

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

rapidfuzz-3.14.5-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5.tar.gz
Algorithm Hash digest
SHA256 ba10ac57884ce82112f7ed910b67e7fb6072d8ef2c06e30dc63c0f604a112e0e
MD5 96f817c957ec9d178a717cf96c9592c6
BLAKE2b-256 2c21ef6157213316e85790041254259907eb722e00b03480256c0545d98acd33

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 dfef96543ced67d9513a422755db422ae1dc34dade0a1485e0b43e7342ed3ebf
MD5 5e9e5710cf4eabf0e93610c66cc99cce
BLAKE2b-256 aab5363906b1064fc6fe611783a61764927bbd91919aaaabe8cba82151ca93ef

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97c6d85283629646fa87acc22c66b30ea9d4de7f6fdf887daa2e30fa041829b5
MD5 348c44c8c9ead6f8f35e00621922ff60
BLAKE2b-256 cc1b2b229520f0b48464cfcd7aa758f74551d12c9bc4ab544022a60210aab064

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f4a8f5cc84c7ad6bffa0e9947b33eb343ad66e6b53e94fe54378a5508c5ed53
MD5 65ccfc8ecf4d0df606d675eade16a226
BLAKE2b-256 ef9fa3635cc4ec8fc6e14b46e7db1f7f8763d8c4bef33dcc124eea2e6cb2c8f3

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbf1b8bb2695415b347f3727da1addca2acb82c9b97ac86bebf8b1bead1eb12d
MD5 908d6393e030c013d1f3f9ea6b22430a
BLAKE2b-256 368240f67b730f32be2ebad9f62add1571c754f52249254b2e88af094b907eee

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 578e6051f6d5e6200c259b47a103cf06bb875ab5814d17333fc0b5c290b22f4c
MD5 ce1cf915384f368eb69c4b939276d8bb
BLAKE2b-256 d9eee71853bf82846c5c2174b924b71d8e8099fb05ff87c958a720380b434ba3

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3e91dcd2549b8f8d843f98ba03a17e01f3d8b72ce942adbbb6761bc58ffce813
MD5 115bca8fd061d282afaf911a5a987010
BLAKE2b-256 70a651fc1b0e61e3326e1c68a61cfd0c6b3c34c843681c4b1eefbf0596f59162

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7d5ca9c7832e6879a707296d1463685f7c243a27846227044504741640caec66
MD5 fc950cca63678fdf6af7413fac1338c1
BLAKE2b-256 5c0f9aafc63f9661222b819b391c187eed29fc90ad5935f9690e5ecc2d2047a4

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0f23e37019ec07712d58976b1ab2b889f8649a7f7c2f626a2f34ea9139e79279
MD5 af4adddf076fa6190f2c7e70e014f08a
BLAKE2b-256 bbceff942d19fce5385054650bb71a58495ddda299d94661ccc4e6e7fa44868b

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93d8da883a35116d6813432177f35e570db5b0a5e30ecb0cbd7cb39c815735df
MD5 158dbd5549816efe793bd34050fe021d
BLAKE2b-256 0c44a1f732b93ffacbdad077b7c801149549b2938e1bece6addb5ad85ed74df8

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c0919d1f89ddf91129906705723118ea09754171e4116f5a5dbc667c7bc9b261
MD5 425b38f6b87a41432777dfb84b9688ed
BLAKE2b-256 89b749fea9fc6878d59bd259d01dd1972d9b86117992b1c66d9b16f0a65273c3

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf5018938208d4597b2e679a4f8cff9fd252f1df53583130ae56281a21801b64
MD5 9499a363ca3e7da43e6ee48ae103174a
BLAKE2b-256 ca494e96c413114398481c0a5b0086af32c364a18613c9a2ea578d17c4bea4ee

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 af6a90a4ed2a48fa1a2d17e9d824e6c7c950bea5bad0b707c77fd55751e6bfef
MD5 c693b31c097d2ab45a8a41303f738aa9
BLAKE2b-256 750a45716fafc9fd2e028cf20b5ac5bc704887081cd312f84edb0e325599414b

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f4c1bca487a17fe4226b4ffb2d30e799d2b274d692cffa76bd0746f56235fca3
MD5 16cd5b3302468952703b2cb54a06db88
BLAKE2b-256 c239123bb94fee40e2fb3b7c49b80827c7ef42d838e18def3fc2fef5a3cf817a

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 738c96944d076deeaff70e92b65696ab4f7ecb8081d7791c5403a3257dfaf8ff
MD5 972f036f4d2c642fea878940a0453d2b
BLAKE2b-256 6407561c2e40cfd10e6630a7b0ac5a2a813aef50d944bcd1f3d260319d659d5b

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9c6bd754d11f6e78ac54e3d86b4b11dc1ba2f13e5fc958899574532897f5a99
MD5 8eab3388ad2970dca4a81c3e3ed3947f
BLAKE2b-256 1ca3f5cfd9965a9d9a9e32249159797c47b5d6299ea6d1629f9126b25f1c10a3

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 77eac0526899b3c3ad1454bb2b03cdb491d67358ec8ef0c9c48bd61b632b431d
MD5 9444fb6223ab5e240d71ee125b059fe8
BLAKE2b-256 f70d4a8988cea658fe335048ddef8c876addff1b6daa3c9ca8ad65a5a2196e69

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 67f3f9d2b444268ab53e47d31bab89954888d23c04c6789f2c727e51fe4b1d13
MD5 0c727a7fa21fe6a9a29dc76bff7212c6
BLAKE2b-256 f6045676df93c85cfa57a3045d8047318df9f3cd58c7b8a99340dd95f874795e

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5dfa89d78f22cd773054caff44827b846161a29f2dcf7e78b8f90d086621e502
MD5 fc353b553af66045e8b73968e2464974
BLAKE2b-256 17eb8edfed1e80119dc9c35b11df4bc701eea85622ad681fff0263b6961d3224

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0084b687b02b4e569b46d8d6d4ad25659528e6081cd6d067ca453a69035f07e4
MD5 4e8eadebc1ca955c21bcb62e6438412c
BLAKE2b-256 71c02579f343a97f5254c43bb5853baccc01488357dcb64a27bcb869b7888a4a

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 593c00dac4e30231c35bf3b4f1da8ec0998762e9e94425586a5d636fcd57f9d0
MD5 ed49e0f3c195500602c942c53da383a9
BLAKE2b-256 19525267c03ef6759831b7d4625a0c9c06e87baa2fae084b61ac9c388858317b

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 97131ab2be39043054ee28d99e09efe316e6d53449b7e962dfcf3c2de8b2b246
MD5 1b8daf6ad8b77d656592d7c30d30532f
BLAKE2b-256 0b15a8982f649150fffbdcd6f17565974501f6ab33b2795267bffbd4a7ba905b

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 419e4397a36e2665ec992d8d64c20ba4b2a42500c76ecadeca78a4f19cb9cc32
MD5 458e82de97bdee2bb407599174757e79
BLAKE2b-256 7dce479074f5624364a48df3403c538797ef22d3ac49c19dc76c3f79fcdcc70c

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 feedf219672eef83ea6be6f3bb093bba396a8560fc75be85ba225f082903df0a
MD5 730f3f130457addde595d81928d54f5a
BLAKE2b-256 81eeb667eb93bba6dc4e0de658edd778e1619dc4d6aab68fa5e5c7f075152735

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4900143d82071bdda533b00300c40b14b963ff826b3642cc463b6dd0f036585e
MD5 90568c2483ecac8da2c4eb01c6a7ff9a
BLAKE2b-256 c8859535df0b78ba51f478c9ce7eb6d1f85535cc31fe356773b48fd9d3e563ca

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59b3dba758661a318995655435c6ab20a04ade79fa51e75bc8dc107cac8df280
MD5 52697a0d51a735aef37f8f385e4d8347
BLAKE2b-256 ca0766e753eeaa353161d1d331b7dd517bb349b0bacfebe8496d7b26be26f81f

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0298d357e2bc59d572da4db0bc631009b6f8f6c9bc8c11e99a12b833f16b6575
MD5 1634caf738b0dcda04204a9590f9cf52
BLAKE2b-256 2de1c2141f1840a41e07ad2db6f724945f8f8ff3065463899a22939152dd6e09

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1a31cc6d7d03e7318a0974c038959c59e19c752b81115f2e9138b3331cd64d45
MD5 6e353d4a33ee97f63f26002f0f3a7e0b
BLAKE2b-256 8141aa3ffb3355e62e1bf91f6599b3092e866bc88487a07c524004943c7676df

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 aac0ad28c686a5e72b81668b906c030ee28050b244544b8af68e12fb32543895
MD5 20ec9d70ec2bf456f0dee312ad79f59c
BLAKE2b-256 1ef15937800238b3f8248e70860d79f69ba8f73e764fff47e36bc9e2f26dbcc6

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c84af70bcf34e99aee894e46a0f1ac77f17d0ef828179c387407642e2466d28a
MD5 a6b29175a1e7fe40c1e8cb73e139ca35
BLAKE2b-256 1ba0a9b84a47af06ebed94a1439eb2f02adebfb8628bcd30af1fe3e02f5ef56c

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp313-cp313t-win32.whl.

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 8ce1d850b3c0178440efde9e884d98421b5e87ff925f364d6d79e23910d7593f
MD5 7c059160e27f10e94f24e54d8a03d50f
BLAKE2b-256 fc01175465a9ab3e3b70ba669058372f009d1d49c1746e2dcd56b69df188d3a5

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af3b859726cd3374287e405e14b9634563c078c5531a4f62375508addebddad1
MD5 2ded692da9d36b3bede42d9a1a8efb56
BLAKE2b-256 dddf454311469a09a507e9d784a35796742bec22e4cebe75551e2da4e0e290fd

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2e83cd2e25bb4edd97b689d9979d9c3acccdaaf26ceac08212ceece202febcfa
MD5 a40f362d946c7220ab2f785bf4ef74c4
BLAKE2b-256 609444a78e39ffce17cbdd3e2b53b696acc751d5d153be0f499d052b07a4d904

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56227a61fd3d17b0cd9793132431f3a3d07c8654be96794ba9f89fe0fc8b2d09
MD5 2910bb3c38a7ad36639b6386a39737b5
BLAKE2b-256 a4990e9f6aa57f3e32a767216f797e56dc96b720fcecfb9d8ee907ecc82f8d66

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp313-cp313t-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 440d30faaf682ca496170a7f0cc5453ec942e3e079f0fd802c9a7f938dfb50a3
MD5 28131031ee99ffe3038cc9548175e26a
BLAKE2b-256 56f4db4dd7be0cd2f2022117ac5407d905f435d60e48baaea313a567ad27e865

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e52da10236aa6212de71b9e170bace65b64b129c0dea7fc243d6c9ce976f5074
MD5 7ff854812638b128826ce846433cda27
BLAKE2b-256 777e9aeacabcfd1e77397968362e5b98fe14248b8307011136b17daf99752a8e

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d45e06f60729e07d9b20c205f7e5cff90b6ef2584e852eecf46e045aea69627d
MD5 d7fc340fc6973b4e4b0adff64ff4612d
BLAKE2b-256 80f428430ad8472fc3536e8ebd51a864a226e979cfe924c6e3f83d111373aa74

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ad37a0be705b544af6296da8edddc260d10a8ae5462530fc9991f66498bb1f9
MD5 5c8722c3bacac5ddf007248944e0a305
BLAKE2b-256 48382fd790052659cc4e2907b63c25433f0987864b445c1aeec1a302ef5ad948

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 39ef8658aaf67d51667e7bdaf7096f432333377d8302ac43c70b5df8a4cf89b8
MD5 df264f43ccebfe9a0116b69709133918
BLAKE2b-256 006069b177577290c5eab892c6f75fe89c3aff3f9ae80298a78d9372b1cecb9a

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b486b5218808f6f4dc471b114b1054e63553db69705c97da0271f47bd706aedd
MD5 c6a3c6b97b4d0cdbca73bb9957254381
BLAKE2b-256 306f4548132acc947db6d5346a248e44a8b3a22d608ef30e770fb578caaf2d00

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 11bfc2ed8fbe4ab86bd516fadefab126f90e6dcadffa761739fcb304707dfd35
MD5 ab90fcb6e0766f081f7af3d1bb7e8260
BLAKE2b-256 cfcb0e251d731b3166378644238e8f0cf9e89858c024e19f75ca9f7e3ae83fd5

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4a60f0057231188e3bd30216f7b4e0f279b11fa4ec818bb6c1d9f014d1562fbc
MD5 5c21a6a44cfdca4820b892d41d4631df
BLAKE2b-256 9c0aac99e1ba347ba0e85e0bb60b74231d55fb93c0eff43f2920ccb413d0be08

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2ae6f53f99c9a0eca7a0afc5b4e45fc73bc1dd4ac74c00509031d76df80ed98
MD5 d6639a73b422834da264d2e7dda779cb
BLAKE2b-256 2ce2dd7e1f2aa31a8fbbfc16b0610af1d770ffaf1287490f3c8c5b1c52da264f

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e012177c8e8a8a0754ae0d6027d63042aa5ff036d9f40f07cb3466a6082e21b8
MD5 6e42139d9d54b5f894f7c55b2af55156
BLAKE2b-256 c9dd77caf7aaf9c2be050ad1f128d7c24ff0f59079aa62c5f62f9df41c0af45e

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46b92a9970dcc34f0096901c792644094cab49554ac3547f35e3aebbdf0a3610
MD5 dae73ac06e0243840ea488615a391fdb
BLAKE2b-256 711b070175e873177814d58850a01ebe80e20ae11e93eb4da894d563988660fa

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 95d937e74c1a7a1287dfb03b62a827be08ede10a155cf1af73bbf47f2b73ee6e
MD5 e2f734ff05370b30156518b7e5bad130
BLAKE2b-256 17540c83508f2683ea70e2d05f8527eb07328acf7bb1e9d97a3bece5702378e7

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17a34330cd2a538c1ce5d400b61ba358c5b72c654b928ff87b362e88f8b864c7
MD5 6bccf72d9a2a79e62ccd2b086312780f
BLAKE2b-256 90792fc252a63bc91d3c3b234d0a3a6ad4ebc460037a23cdcdaf9285f986e6c9

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b002c7994cc9f2bc9d9856f0fbaee6e8072c983873846c92f25cefba5b2a925f
MD5 e71838aa61489a0a3541b6711cccc718
BLAKE2b-256 a3317aa7e62c4c516a7af322ed0c4f0774208b72d457d0cfec808bad0df12f4a

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6737b35d5af7479c5bf9710f7b17edd9d2c43128d974d25fb4ea653e42c64609
MD5 97065b284fbbaf773f26d9a197544693
BLAKE2b-256 ea59b2afd98e41af9cd54554a4c1c423d84cdd60e6b1c0a09496f033b55f60ec

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ebd8fd343bf8492a1e60bcb6dc99f90f74f65d98d8241a6b3e1fed225b76ecd6
MD5 450d8c87761627239d6cccd33bd9b054
BLAKE2b-256 1166252803f2010ba699618cdc048b6e1f7cc1f433c08b4a9a17579b92ab0142

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 478b59bb018a6780d73f33e38d0b3ec5e968a6c1ed42876b993dd456b7aa20e8
MD5 4bdaeaa82b6daac397c20dae038439a6
BLAKE2b-256 5ec3143be3a578f989758cae516f3270d5cbb49783a7bfdf57cc27a670e00456

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d8375e3da319593389727c3187ccaf3e0e84199accc530866b8e0f2b79af05e9
MD5 efc95fc2f1a5ad40bbb0ba0036d73c4f
BLAKE2b-256 850bf65572c53de8a1c704bda707f63a447b67bdbe95d7cdc70d18885e191df5

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9981d38a703b86f0e315a3cd229fd1906fe1d91c989ed121fb975b3c849f89f5
MD5 0b61bce18c9e239cc3df426d8872f090
BLAKE2b-256 8645d39874901abacef325adb5b34ae416817c8486dfb4fb87c7a9b74ec5b072

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ebd1a18e2e47bc0b292a07e6ed9c3642f8aaa672d12253885f599b50807a4f9
MD5 12332328f5891d55b801de93b732918f
BLAKE2b-256 8f2f71e0a5a3130792146c8a200a2dd1e52aa16f7c1074012e17f2601eea9a90

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1e989f86113be66574113b9c7bdf4793f3f863d248e47d911b355e05ca6b6b10
MD5 c889540dea35a38ff7a98962cc76daeb
BLAKE2b-256 650dc47c3872203ae88e6506997c0b576ad731f5261daa25d559be09c9756658

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09d6c9ba091854f07817055d795d604179c12a8f308ba4c7d56f3719dfea1646
MD5 4efd3fdcb11098f095252b9f02b92b8a
BLAKE2b-256 fca72d1a81250ac8c01a0100c026018e76f0e7a097ff63e4c553e02a6938c6fb

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp312-cp312-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7e580cb04ad849ae9b786fa21383c6b994b6e6c1444ad1cb9f22392759d72741
MD5 b77097e78e2bc5c22e425f944e3fdebe
BLAKE2b-256 ed54d5caabbea233ac90c286c87c260e49d7641467e87438a18d858e41c82e91

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48bee0b91bebfaec41e1081e351000659ab7570cc4598d617aa04d5bf827f9e6
MD5 b186ab904115df63dcb320cd031c202c
BLAKE2b-256 797297a9728c711c7c1b06e107d3f0623880fb4ef90e147ed13c551a1730e7cc

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01550fe5f60fd176aa66b7611289d46dc4aa4b1b904874c7b6d1d54e581c5ec1
MD5 6a7c87712185043aece90090de3e979d
BLAKE2b-256 8837a3eb7ff6121ed3a5f199a8c38cc86c8e481816f879cb0e0b738b078c9a7e

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e910eebca9fd0eba245c0555e764597e8a0cccb673a92da2dc2397050725f48
MD5 1a32ca987cd6207181dea5a0c84eb81d
BLAKE2b-256 d01ffbad3102a255ecc112ce9a7e779bacab7fd14398217be8868dc9082ba363

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0d3378f471ef440473a396ce2f8e97ee12f89a78b495540e0a5617bbfe895638
MD5 51ec537ff53c0c71d370a543aef52f77
BLAKE2b-256 d3e3574435c6aafb80254c191ef40d7aca2cb2bb97a095ec9395e9fa59ac307a

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8c90cdf8516d9057e502aa6003cea71cf5ec27cc44699ca52412b502a04761bb
MD5 2bf86c1be75f9de20c300e1ff7858399
BLAKE2b-256 cae1dbf318de28f65fa2cdd0a9dfbdee380f8199eb83b19259bc4f8592551b4e

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d7ca16637c0ede8243f84074044bd0b2335a0341421f8227c85756de2d18c819
MD5 d16ff7ff0a3e0f7f49b6c00e05b381d7
BLAKE2b-256 b9b5eca8ac5609bc9bcb02bb6ff87fa5983cc92b8772d66a431556ab8a8c178f

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c5801a89604c65ab4cc9e91b23bc4076d0ca80efd8c976fb63843d7879a85d7f
MD5 2420bf53d18c3e776158969a1db03335
BLAKE2b-256 d80482e7989bc9ec20a15b720a335c5cb6b0724bf6582013898f90a3280cfccd

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0b2af76b7e7060c09e1a0dfa9410eb19369cbe6164509bff2ef94094b54d2b6
MD5 4f5d409e5bbbf243f355d36917621956
BLAKE2b-256 8752374d2d4f60fd98155142a869323aa221e30868cfa1f15171a0f64070c247

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 823b1b9d9230809d8edcc18872770764bfe8ef4357995e16744047c8ccf0e489
MD5 16c6611b94d64ff66bba2c5bc30991df
BLAKE2b-256 819361d351cae60c1d0e21ba5ff1a1015ad045539ed215da9d6e302204ed887a

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9669753caef7fdc6529f6adcc5883ed98d65976445d9322e7dbdb6b697feee13
MD5 d43af95e496fcdf40dd568af0b26d3fe
BLAKE2b-256 abba970c03a12ce20a5399e22afe9f8932fd4cd1265b8a8461d0e63b00eb4eae

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp311-cp311-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7092a216728f80c960bd6b3807275d1ee318b168986bd5dc523349581d4890b8
MD5 9f2dc7cc35a00e5b736d05a6bff10b39
BLAKE2b-256 5e1c3ec897eb9d8b05308aa8ef6ae4ed64b088ad521a3f9d8ff469e7e97bc2b0

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d50e5861872935fece391351cbb5ba21d1bced277cf5e1143d207a0a35f1925
MD5 d3eeee5756c69939980b14b7351da4c0
BLAKE2b-256 6bd04539e42a2d596e068f7738f279638a4a74edd1fbb6f8594e2458058979c6

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb2829fedd672dd7107267189dabe2bbe07972801d636014417c6861eb89e358
MD5 81f1c9610f795625208be3f7120b8e0c
BLAKE2b-256 1ab2ffeeb7eca1a897d51b998f4c0ef0281696c3b06abcca4f88f9def708ffe1

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ab449c9abd0d4e1f8145dce0798a4c822a1a1933d613c764a641bea88b8bdab
MD5 c19276305e8a390218d19bd28a105728
BLAKE2b-256 9e89c2557e37531d03465193bff0ab9de70b468420a807d71a26a65100635459

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e251126d48615e1f02b4a178f2cd0cd4f0332b8a019c01a2e10480f7552554b4
MD5 3b01bd630ce765f49a9291f7e65f5b5f
BLAKE2b-256 e1f93c41a7be8855803f4f6c713b472226a98d31d41869d98f64f4ca790510d6

See more details on using hashes here.

Provenance

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

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 8166efddea49fdbc61185559f47593239e4794fd7c9044dd5a789d1a90af852d
MD5 62fff45ef5f0cfb54c3920a1061f9721
BLAKE2b-256 bc0102fa075f9f59ff766d374fecbd042b3ac9782dcd5abc52d909a54f587eeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.5-cp310-cp310-win_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f2073495a7f9b75e57e600747ac09510d67683fd64d3228e009740b7ef88f9fe
MD5 f909ae2e6b7ab116610572596fe95805
BLAKE2b-256 d96ef530a39b946fa71c009bc9c81fdb6b48a77bbc57ee8572ac0302b3bf6308

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.5-cp310-cp310-win_amd64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for rapidfuzz-3.14.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 13cb79c23ef5516e4c4e3830877be8b19aa75203636be1163d690d37803f6504
MD5 921e5c886a1a7a4ad31d5b8b0f6f7c16
BLAKE2b-256 e3c47e5b0353693d4f47b8b0f96e941efc377cfb2034b67ef92d082ac4441a0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.5-cp310-cp310-win32.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 649712823f3abcdc48427147a5384fac15623ba435d0013959b52e6462521397
MD5 041bb5233184666a6c910ec63adb506f
BLAKE2b-256 108eb1b5eed8d887a29b0e18fd3222c46ca60fddfb528e7e1c41267ce42d5522

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 eacb434410b8d9ca99a8d42352ef085cf423e3c76c1f0b86be2fcba3bff2952c
MD5 037eb452ff2f009e20d3284698202f5e
BLAKE2b-256 32f91aeb504cdcfde42881825e9c86f48238d4e01ba8a1530491e82eb17e5689

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.5-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

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

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88b7d31ff1cc5e9bc0e4406e6b1fa00b6d37163d50bb58091e9b976ff1129faa
MD5 18e0b526a1e8f240066d4f94d6910e8e
BLAKE2b-256 29fa09be143dcc22c79f09cf90168a574725dbda49f02cbbd55d0447da8bec86

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.5-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp310-cp310-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp310-cp310-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 068b3e965ca9d9ee4debe40001ae7c3938ba646308afd33cf0c66618147db65c
MD5 18f6bb4b27b883e7bea34c8cb870a0e0
BLAKE2b-256 e33c11e2d41075e6e48b7dad373631b379b7e40491f71d5412c5a98d3c58f60f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.5-cp310-cp310-manylinux_2_39_riscv64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfa552338f51aec280f17b02d28bace1e162d1a84ccd80e3339a57f98aedb56b
MD5 9ce233a307f22f0e906f941e22d1fcca
BLAKE2b-256 95ffa42c9ce9f9e90ceb5b51136e0b8e8e6e5113ba0b45d986effbd671e7dddf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f9fff308486bbd2c8c24f25e8e152c7594d3fe8db265a2d6a1ce24d58671127f
MD5 0e6307ec5cb73bbab807c2bc81e2c4e9
BLAKE2b-256 7f60a67a7ca7c2532c6c1a4b5cd797917780eed43798b82c98b6df734a086c95

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 667f40fe9c81ad129b198d236881b00dd9e8314d9cc72d03c3e16bdfe5879051
MD5 bb4d612b9e64eb34193e96ffa67bc656
BLAKE2b-256 2b7b94c1c953ac818bdd88b43213a9d38e4a41e953b786af3c3b2444d4a8f96d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

File details

Details for the file rapidfuzz-3.14.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-3.14.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 071d96b957a33b9296b9284b6350a0fb6d030b154a04efd7c15e56b98b79a517
MD5 d98f8820a9179dc48502764cf1e10dc6
BLAKE2b-256 4fb1d6d6e7737fe3d0eb2ac2ac337686420d538f83f28495acc3cc32201c0dbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rapidfuzz-3.14.5-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: releasebuild.yml on rapidfuzz/RapidFuzz

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

Supported by

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