Skip to main content

rapid fuzzy string matching

Project description

RapidFuzz

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

Continous Integration PyPI package version Conda Version Python versions
Documentation 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

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++14 capable compiler.

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

Usage

Some simple functions are shown below. A complete documentation of all functions can be found here.

Scorers

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

Simple Ratio

> fuzz.ratio("this is a test", "this is a test!")
96.55171966552734

Partial Ratio

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

Token Sort Ratio

> fuzz.ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear")
90.90908813476562
> fuzz.token_sort_ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear")
100.0

Token Set Ratio

> fuzz.token_sort_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear")
83.8709716796875
> fuzz.token_set_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear")
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', 100, 1), ('New York Giants', 78.57142639160156, 2)]
> process.extractOne("cowboys", choices, scorer=fuzz.WRatio)
("Dallas Cowboys", 90, 3)

The full documentation of processors can be found here

Benchmark

The following benchmark gives a quick performance comparision between RapidFuzz and FuzzyWuzzy. More detailed benchmarks for the string metrics can be found in the documentation. For this simple comparision 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 extractOne in the following way:

for sample in samples:
  extractOne(sample, word, 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 extractOne is a lot faster than directly using it. Thats why they should be used whenever possible.

Benchmark extractOne

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. Thats 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

This version

2.6.1

Download files

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

Source Distribution

rapidfuzz-2.6.1.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

rapidfuzz-2.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-2.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-2.6.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.6.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-2.6.1-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11 Windows x86-64

rapidfuzz-2.6.1-cp311-cp311-win32.whl (1.2 MB view details)

Uploaded CPython 3.11 Windows x86

rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_s390x.whl (2.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.1-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

rapidfuzz-2.6.1-cp311-cp311-macosx_10_9_universal2.whl (3.5 MB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

rapidfuzz-2.6.1-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10 Windows x86-64

rapidfuzz-2.6.1-cp310-cp310-win32.whl (1.2 MB view details)

Uploaded CPython 3.10 Windows x86

rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_s390x.whl (2.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.1-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

rapidfuzz-2.6.1-cp310-cp310-macosx_10_9_universal2.whl (3.5 MB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

rapidfuzz-2.6.1-cp39-cp39-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-2.6.1-cp39-cp39-win32.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_s390x.whl (2.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.1-cp39-cp39-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-2.6.1-cp39-cp39-macosx_10_9_universal2.whl (3.5 MB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

rapidfuzz-2.6.1-cp38-cp38-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-2.6.1-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_s390x.whl (2.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.1-cp38-cp38-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rapidfuzz-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-2.6.1-cp38-cp38-macosx_10_9_universal2.whl (3.5 MB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

rapidfuzz-2.6.1-cp37-cp37m-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-2.6.1-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_s390x.whl (2.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-2.6.1-cp36-cp36m-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-2.6.1-cp36-cp36m-win32.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_s390x.whl (2.8 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

rapidfuzz-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-2.6.1.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.1.tar.gz
Algorithm Hash digest
SHA256 de1f586e664500dcea30c61a61ffbc8c28361b7aaee58961519e3a79ff633006
MD5 3adba0939bdbf5072a34acc3407aabb1
BLAKE2b-256 d73cbf8084d7b08a94591cd33c5ac2b7c43d752b4a3b29c1ade91eec24921879

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7d0350034efd47d37d49d07b8010125011234c230fec39335bfac01e373f7b1
MD5 35d0898ad3062a48b10954b580a1f733
BLAKE2b-256 6d3b4d091e6a0d5688f1acbcc54f86582505986a9c0c5a846f099d630b472a33

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82a91ca9f70f2db8037cc0fd0e7b8999e46ae003c105f29f010e16353b2645b7
MD5 93012ecb7fe4ab01a13e68ce54b0c831
BLAKE2b-256 10c84b080b23ecfefc79bda6b957bef0548e641c10795322e68ad949d90ae487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7d5663a506e46df667ec1c005d6eab28025bbcd63a637001643d0f04a966b55
MD5 bbb106ac5f75ccc906b50fe6bf7ac42e
BLAKE2b-256 6b37369dd2c5bd4087ec9292b81cb09bf68e9c796a72a67b45e7f0e25b3ed144

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3aacdba2735aed0d9ab76eac75f1e66adfaf182d04be0d1057cf46e33eb230fd
MD5 e7a2aaae96db1fd61fe0a026a1db717a
BLAKE2b-256 c487c3f9007edb2e78239a704c0392b62b342f59f9d9b5977932c3379369417b

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5404d2aac723a31ab8226c8491157935898398de63e67e3022f3c7f8a8b252d
MD5 855f9062fba442ed8dbd337a8ffadc70
BLAKE2b-256 90f931c7815727fddf015c3a2c01f17dd18fd8cd28e0728502f4b56a804c6114

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5133bcacaf8ae0629e3a1b96396c5b467c84db5f5b27f7c186659e49a5f9d40e
MD5 f4ed713be93b3a49e3bdbe0792e949f8
BLAKE2b-256 3af01ed4515cc87dd0c7ea0b5654ebf7231316af05b4a7b0e0c083ef5830bacb

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bb93e54badccb6c50cd1243efdbc08d9297e9e703ca04e235cac535c452b582
MD5 8a7959a952fa21b77aece57abe3f179f
BLAKE2b-256 a0403fa41d28e2227a3b736aef1bb1dc0440073181b0847798894b97431bef17

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f699cbf0ddf3404956b0164b0c71d12043879c8f0532778a35ade903531ca442
MD5 7bfc6c3f3fc2aa6e0f295c921e027636
BLAKE2b-256 f246de3cc18d0afb10a649d7d783ee9a882b635a904c1a3b8b241ed544dfd3de

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5c312554f9f19743d97ccd30421da2f021fb0efda7ae55a43a5486edcb84b52
MD5 eb3bbdab67e2f134a41b61b5d227aac9
BLAKE2b-256 fbc18482e9d7c041245e8963446ba55a2eed3a087b375bb3043d2089dbbb2101

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28b3428eecc8e81655ca366f869a5192e8606d6850711d275b1f2f5b40d4bc22
MD5 9c5a50645cb6d1c7bb279ef3b58bec88
BLAKE2b-256 dc01f1b4e9579851685ef531b63cbe543f13dc41415a8b6233ff45d3081b835a

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06d57ae1c272f0b8d0d77391c23fc7c5748d0be71b63172e31180a6a2031c2de
MD5 a805319cf7b412142fa7e77d43572b0d
BLAKE2b-256 290fe96a7f72b45cfef1f149be40264e41af8f75bc01513340500fd7b34847f9

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 200111a7340804873eabc5187c7baac02073aa8af5c3a242b118ce919bf24548
MD5 199eda457174d4132a3a27f4ffc2215b
BLAKE2b-256 65647d8fc33e83defb05b3f2f9ee67f1db2e6f1969fd5dd859b96fe2825616f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b07a6a64080bd3e1f1aeb339a1518a753cf644ef954ddec3da965938d9443965
MD5 d10b11d17dd1714026b8c77be22e72fe
BLAKE2b-256 a958bc67a944694d7f90e511a2dc61427e19014d7cb8314fadb96e9a2dbfef24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.6.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4aee3b877d85a92d22e02492fd558614cf77ebde245183487bcb347bcb1b34ff
MD5 fd74109b2bb82d3718b11710603c1ac0
BLAKE2b-256 cd2b51cfcc772115b3504fef6813d20cadb036e76bf17569519676e226e6855c

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9f0f87198228f128c0bd2c1abece25db99b4c2e8bf76d86d1a0ec8cbf326141c
MD5 698e32503d06cb1392a07d8571c5cc0d
BLAKE2b-256 339fee2b13fe5289bcb40c2083a97aa25a9b78638520e3a912a70f4cd3385df3

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ef4ade9e071ef736db242579b5984397a2dba7fac2506c0a436b46832343308f
MD5 5f952008755992f73429868d932bc75f
BLAKE2b-256 507ef956bca77c98fda9bd875a9879405f0c9c6ae054a05d7e80f19fd43aea4a

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 dd00c0fd560e772a9eff717bb45325bd64852b6c5a88e1a6c1445b9ad7aea236
MD5 615f15bf41b3ef021747995c07802e46
BLAKE2b-256 82281500aa37dbe83d753985f7f8a7728d4a619926e23981a5f90bd044c7f978

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0f13c33ac18b396a145a45173e94af458386217a41411608486bb28cf2db58c7
MD5 053cddaeb59799c4b015628a23188e76
BLAKE2b-256 9f09fcc9d56fa768b367393f81a9e23f8f1b8b1eec3346f5fd4dd1d9ccd6bab2

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 248dc576893b588ed4e0f61520510309f52188546f5affae062b0796c238716c
MD5 14c7621bd70630bc6aad8f867582b8de
BLAKE2b-256 d81e3de5d2f85f0967abf99d1fc4740ddf85f684cefda9b9918d1471eb404c3b

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cfbc6346772f6cef93f8cf8afbb4f4e9ba177812422737f0fa81260520eeb0b
MD5 9bd20913289b71315b8cff50c2f8ace0
BLAKE2b-256 ddfed91fbdfe4b89cd92e5307e6de4c16c15dd4bdfaefab8af5b3cda16388c1c

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1804feb7b83ff4ac6018372d54581a4ac4020b1234e56e1d4b799ebd6358ed64
MD5 f099c9d85e2f96e9138eaed09160dbb4
BLAKE2b-256 5fc9c74626449288e8c14317fda07e9dd65bd496b7e1607e9c7c3eeabbf58a05

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 09955b30d9b548b3fc4fff0424e220206f1ecf1c5ab8390530c67fedb8672f0f
MD5 628c24ce0123fa3702c58b219812f39a
BLAKE2b-256 486e6550b1f509acaae66b15ab681545bbe1851589e6f9cd7c221a82f93d3900

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f5a1989bb695709beb1f0c3ddd9cad1bf2e388c1d524d9a246af038092fb1bf0
MD5 9fc108ee672814f3788051ef4c64f9ae
BLAKE2b-256 1bf99324c450a26ac1f8d38ab424f98721aefccc1ee30e76f302820e368fecee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 322c7c5572369d372c1a3f79a2bbfa883e8047ed2ea00ed21dfb8219ea251c8b
MD5 33e39de10efa746ee6b23125fcddc770
BLAKE2b-256 42d99be664264896dc679f2962b67ffef526727cc61d856804254f9e93d365b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9aea39b8085ab8ed99eff2710cbdfe46d4e57e5a4354038a862a956d081c0fad
MD5 3e0713e1ea3a7a5ec3e484e40a67156d
BLAKE2b-256 572da74a0849f5c16a32af1cf49cdadd223fb3f30e7017fa0ad296276e1d6147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b8425978d0a785b087ab4d367a74106d48c5cf1d68014cc522e6d8d2b7fe4fc
MD5 395ad70733299d919bd7943e3d696e7e
BLAKE2b-256 b3dfd032193d828882e019fde88aa5ea534ea66874261c269e324a99dfeaf9cd

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5cad1a039bd8609cb8de49c6e012c934837339dcd2829826f79fc0532a723cec
MD5 920cbdda71c0021cd8a8497052020f8b
BLAKE2b-256 db525f42e58b1ba795f3dc1021e984e946859887f379a0036904c0fa5c997425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7b074cb84f17bb1ba7e10977bc03aa97f17cab9c9af8710ab63e6c7e7cefc4c9
MD5 7e56ac8ee03bbdcfeaded841a2110428
BLAKE2b-256 224fe11e4b12e51452175dc7d8e968338fdd2f37f6a6f1dce2ac6665c6ab74b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.6.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f8c067ddbc9e86cef2677825f57f8dfa15a0f45d4d8457bcc88d5ff0eff892fb
MD5 7adcce86c966a9f30daa1d3ecf575e58
BLAKE2b-256 d747670586a168b5f0bfbcde7788a04df818afffae67645b3363b68e4d48b772

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 04391c2eb6bd05f3a74756cacf9a7fee53079a375eac09e70cdaa4784412b874
MD5 6417fc7bdd6c4b895b30506b11070b44
BLAKE2b-256 a73c06a3ef6bfea953c7ed4c8cdb316372390adb8ebfc42fd7d9a03e87931d83

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 923918e8447eae609c75ce4f7a9f852e1064d143971823cce269f19100926168
MD5 f2211a771bf9fd01913ff6e9a263b368
BLAKE2b-256 ebb6d416b57aa059e987e6ed7f9b7242f5a0c67b004978d3cb65cda94d66f252

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 ce01fcfbe87b992ad27529b6ef5c3aeaa38c39e16e46832b2a5314f0d46d2ee3
MD5 08a75bba202105492b29c0c540ace455
BLAKE2b-256 ba272bfa031f85d9a9e48dec15daaf57ddf6c8679d5f5a4103525d201c203465

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b7bcd0fde1e803f120ce277992de2e800090d274fd9a47f1bba9e0688e4d11b7
MD5 c8e89fd1b65ebf1c90deaa30e0745da8
BLAKE2b-256 3a2abe09b1e67237ff851cd5af4ad49ee8105a2692a8333a4fcbb71d251a7983

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 67033e336ad737cd3dda2e03af8011afd79eca6e258ddcf6005a8a0dc7d29db8
MD5 fde033a30ddcac3817f5783b4ba91a1e
BLAKE2b-256 b32200cef580159eaefb9063ea248edf1e3aa962c821339afac8fcbc90d959d2

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e93c01ce97ca3d1674b0b0b20a12a8ce6aedadf98a3fc7e2ff7c98755a474f8
MD5 724430b14ea9b8935c7ca93e90da6e68
BLAKE2b-256 0d6cc524158dcd7136b7be42afdd95d6fdd57363527b3d435009088a758153cd

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0dcf4476280b715656d848a7f23925f2b49e18eaef0a0844e9e054baea89f7d6
MD5 782b13196384fcba6465659070619377
BLAKE2b-256 4054e3d687239a6c3fa08d039d8762a588bddd196e2a9415965cb00166630e2e

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2051177f22f631ff6afaa771c31333dec4059a470ec071f00f61fb19028eca4
MD5 fe2c4a82598467ba78cb5649bd5b9f43
BLAKE2b-256 c96985823d4ba025df75d8187b2892c723f3ac0ce58fd6f27a81f4d66b3f0b0c

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1d407d678f8ae2ebf7d30302071c99e2c8ad7bbbe5dfa6d42db70e631ddfe8a
MD5 061dba91902236c9faf5fbd29fe88d56
BLAKE2b-256 b215508019c94093c10747d8e3403fe0f58191b1382c467c74b022d7a40ae6c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 674a7b70d61639989eed1d27001671ea32cf9ea773b4fe76e9693cee02108bfa
MD5 ecbf741944ccb3ec25fc5a3f2ccbb781
BLAKE2b-256 73763ed1c4e942f7744237d1965198a86d083b5ba333a541a976f3fee4a968d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f6db287d0e1be3f03795c681bdbb1776091dc9717599152e9246950009fff20
MD5 b30708d03cf6b051784266a6fd7a5122
BLAKE2b-256 5ad05e6c95c0b1e0a05b19fed70782c8b94f80628c24c5133c1b294fc460cf61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8dd92301d9b96fbf18d66fa0f1a32296dd0e0918edff5a2173c096aa6f95bab
MD5 9d313a5460da6d00621d2de5a13f4dcf
BLAKE2b-256 5ca5622434d85dff297eae7dc88da3f7e795496e8627e5c44754b7c1c893082f

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 10a1f473b46c3eb873d542f01045156faa501d1e60c2d9491e7e00ac8d0c5f89
MD5 a5783a5db00fea6293d95db82b3aa6fa
BLAKE2b-256 f9896c4e7aa078d034db046c61dc7f8ecc651086d45a60b5cc87365e085f6f1a

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-2.6.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8947da110f7567f732ea417535ec781c786b780e33f611734918288e823611fa
MD5 0dfd6d52c52b93ef9a1b3d9f28d0544b
BLAKE2b-256 883eb61284ce147424caad56213837274b96389a8365ad7c819271ccd06e5fd7

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: rapidfuzz-2.6.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dbbd65638398a2f4d2df5887902ab670d991ac3095e5fe0217f83d594cb0108e
MD5 fbf905e99c39f333a5fe8413fe6cd1ab
BLAKE2b-256 d69bf1c9b69acc7727be1960f62ed5f5ac47ce7714836de43b1319e03e0bb726

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 95e5e63f79040e2ab4d85a3432948e92f83f65ee209cc691e4ac6457ef048d07
MD5 7ceea8b203b78f6d4c8f7e0cb49a7151
BLAKE2b-256 9049546556586e41285895f8e1ce30effea309cacc72b177b4df5dd302c85d2c

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 469642009b4717310b3929f3cda4df3675c15313e3400f68f97581d5241b7dd2
MD5 df65207558cceaaf798ca968da38dd87
BLAKE2b-256 2560ed082deda76682fa3dbac6b38ca1a64df677c17b2e12772b0bc1bfa7c150

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 28f4531eb07256f6a4cd60a0f59bdd410502ce15397a90e2464b7517e1bc73f7
MD5 fd2b8d822206ae6adffef2d13a12bf7f
BLAKE2b-256 cabe53c9e91bcbd9f74aa90e5a087f2465338c0d8d86b7670ba7387ac30c8182

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c497e4ac4b1962b571c0b5a9738938ec3ae6eff868a9d0792a29ba6b24bfb069
MD5 24b00c4c28961d774fa8f8ac56f52faa
BLAKE2b-256 08abcbedcf7215d584ee010b8866bb92bc99903d7e96c4efaf800b2850274a0e

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ad5cd5a092a694c7e426961779fdee16496527fa66f9c11ef9648631db8530b2
MD5 00794c5712b72b09545dfb1a6b245320
BLAKE2b-256 26c17dcdc191679cdedce78b1aac0e7bc0834e7dc18233565ecde3db0458e177

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4faa161621b0d62f68e0cc0ccccdf1723eebd562bc9bd8f32a432c3b526c2542
MD5 02ed3e651c697c133ecac957495734e4
BLAKE2b-256 888fc9d2fa5c77ea410d2cdddba56f039753aa6269e7f8f3ec779285be3b4f09

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 13bdb3b02bbaeaebcec30c4f4165197cb8fdf8cab34476047b610ac18e92d9d9
MD5 c5c9ae0aa63633a27129bd418b5d51a0
BLAKE2b-256 10997c4d280832bf39db6b34b2e8e699efcf6cfc59cde8894ec686ae9a5ce9e0

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 797d869ef0f609462d3e9f691a2ce3d476e4f9f2196941a7ed8be0d332ad4b7b
MD5 ab0363f2c054625eee374abaefdd6fbb
BLAKE2b-256 46e20096bf807c1b0511dceb9bf62414ce7aad399fe762d449cd34ae048a8c1d

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c66c5d71f50221300c925b9eae36d3ecd5404a5bd83d89bb5510288d5c4fc863
MD5 e256c108c440442b6a4056a5743b43de
BLAKE2b-256 8f74516583ac284d0455e8faf84cbeaf4298ece5e4a179d48f5026bb65814848

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c2b95cea7dbf98c127fcda6f4b5456f1e78b511de937c9dc76b0fb24764d520
MD5 ca58c169c94d241a71560fac9a90c456
BLAKE2b-256 0afdc34facc46a07440827d4e92b43074c5b637f1009768f7fb6bd48632d193b

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e35178756f5cb17ce1cb80fe85a61571d5200c622b8a6f42748c745a6d0d4bb4
MD5 616abfa85614419d689f74d53a37f0c1
BLAKE2b-256 65fbdd05785b35056ac5bab0e6354f3675c2e976992f97e228318cf33439b5c3

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d5fde738448f4599b4e76cd89c29e2d81c625a38942aae26b2937d8ff3da28d
MD5 548c8636cd378ec5195514475c53885f
BLAKE2b-256 1cd2061edead23e14d1003ce855e62bd713c73919427a7f361658b95e3de8729

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 358c544c4b2e5f1bca16960727a3f1ce379bb2360f114d92e8cd7cfd629f6568
MD5 a835a2443d6a47af01c17a5dcd84946e
BLAKE2b-256 d3ad6bb2091f12f3952de9ced366dd4596868f65a8f379c7bf2fb87f811ce512

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-2.6.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 da4490f47a34ecf20ebbe938987c9b49b77d16a035d7cdace283b94c9736a859
MD5 56e0df49469518eebcd9a9b132516e17
BLAKE2b-256 45dff0ab022664e6080e4914bc1d270443bc28a74106d0c9b56920fc53e191e3

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: rapidfuzz-2.6.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 83076083a4172234f04e274e4ce0ba7e570137ca6842a83079f4db5ba68de1b9
MD5 06455ea2c36a2d4ad90a21b4795a19ef
BLAKE2b-256 50b24a5ae60ffc68cd0d5cb7ad2e84d644abf2fc1b39eed356fa32e1bfdc317b

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 43deb51e0ce0aad21a5660ca9d9dfc121cfa04a66b763cce72723f7ab5ce59f9
MD5 283d7b18649db5251f7d19891a054d20
BLAKE2b-256 52f1351bde6ac043829c6dc1509a02627a1dd3d702ebdec049767ebbe63f815b

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 c76f4703a16da4d547a61bddced25b2cd83f9cf2ef493892ac0b2fd5f4e47ccb
MD5 07206dc88ac14f78f14a059b3e09ccd1
BLAKE2b-256 e0e52515decfdc425fbe78c35647b82ed0718be5d7ebb761aefc510db19c729c

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 bb76b50dba563ad5f5e7ced5a7e65bf5daf1e04f300da0381f8c967471f52a18
MD5 f33d9684ea782ea8bc6b51ddc8db4086
BLAKE2b-256 348ca2094350308b4273346a5a0ebc738a4ccca4b88cdb961004262425d9ade4

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 db1afa111dcb5bc5547d1deda3f6c10ff4a8073552af1c76640b6de5bc2b0966
MD5 60da4cbc16c34de31cd5130e1eb5b7bd
BLAKE2b-256 c3457f91425452fda346216b4906d42a9472fe9f4bffbb2fc7741776f195e5f3

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fb3b0ebe95f72aa6ae449a68e98e33d4e061984f49751a3c737aed33a3495646
MD5 3aa842adcd0bb4e7941cfa87c22b953e
BLAKE2b-256 da2e0a31b91cd3059dc0587d47fb671247b091e9758f3422efb360341d538db3

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6c8796e765b0079a758f54313af46b3b67472fde96ea24a49b8355d795b0409
MD5 605fb717c9247869e971f4bc8915c1dd
BLAKE2b-256 7244646ba5da4f419857e4dc7c8f95ad9f3e326ed266d4d5fe03dbaf77cd6731

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 356cb2e4cc3254bc0342a5eaa601664fb7e4a9fe6feb9f1fe45ec97cf23618f5
MD5 478b8af33fd7f7d0dd5195f9908ffd0c
BLAKE2b-256 ad2779a2638d76124afaee62bf89cc21bbaedb8be5addda69fabc72be0527174

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f510d77c5e8ba2d89bb81c5dc43a2d119b53c20ee5b5feb564cf90561a00bd6
MD5 cd02dc9e94c1f39db384cad8e23651b9
BLAKE2b-256 8f9a7bc8be9c5b3590462fb5798eb8eb2a3c56ac7205d2afa13682dded35cdd0

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d9443aecb5ade8ece04e36bfc14f01397fc150199dba6f02ba165a149637e12
MD5 74ae20611fdbf4f763615c80f73de31a
BLAKE2b-256 fa87932024165dfcb3d6da3be371605906051ba197e08312845e5a97cca0f684

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d2c4dcfea7d3381fb9168459c40f6633cb2aba82812f1f281d88788fb3e14bc
MD5 6943600a4af1b4a0c2e323610fcbced2
BLAKE2b-256 696bc627f1f6e41f743b4c58d899cd0ef37d30ecc3b11f7c901e2d8247fa7e27

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48ba07c4affa7925c5eb1992d55d9b1448e1eb710947ea59e912ca1dd799629c
MD5 8675030cc5a97e1a3c1eaf87ebfc50c8
BLAKE2b-256 c68ad34a227eb391006bb252e8d4c512fce9f887644573e4e0dee126500834fd

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b9947a9a638fe19a93af93a5d5e38a174dbe61344aab52ec2405823d4a3c34ae
MD5 fe5df60bae9cf42b2ecc74324b5668d0
BLAKE2b-256 b97b58c016d09655533f59a445a233c553f4960e7e3c8d2d2f84c18b0b81a44a

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 15b76ba7728e0f078b4146752324aeea9a7f9d7be1b21b8eda1e5ad8f57f5fed
MD5 e7c3cd49853664ac28ece1ab00b917ed
BLAKE2b-256 03e85670534f9888437dc00601daa7c07dc1f5c830613bdf163bd41e9e6e6235

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 14516d181e96767ff8eea5d742d07df71860f34ccaef7a2d46a775276d44d308
MD5 d5a0f8296a01ae67fb592e51042fc1ef
BLAKE2b-256 ed2b8fe1ca653a250f1a2c15ea7dde2344295455d17acd5d4cb524f4a78fbcb8

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: rapidfuzz-2.6.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d687585135b8d3da5a91b1e052ab5c51bcbced4564f102de253575957f41491c
MD5 01081ffd2a7a2ae74aaa4eacbf89df91
BLAKE2b-256 b3c8bb92fcb2e3fc3994812691c80b41659e50f69b8984f326fbaace443ed97a

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c4841d7f7e56b48f9060ef1563db62c92cba6b6b58c3577e1d02cbeb6308bd7c
MD5 ed9013ec8a23f24c474fe2f0c8f06ff1
BLAKE2b-256 b7b744ba7d71fe7265c1d11e7ae5ccd341889490d62a8ac34e43c09e74896fb2

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 d727d5c626508319b2024e60b28d9beb2bff85d0cbdd841615f967f74a15175e
MD5 acb59601deb8bccb443abf387b89e70a
BLAKE2b-256 c5013bf68e28d10ad74795912fa7a75650daf5d1ad58ca3746bc71ca8deca962

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e9adc9af0f75aae8e7a1aed208a5d5329ea0056a49114b74055d8e94dde2cb5e
MD5 398133567a68cad82fdbfafbe2e4ca95
BLAKE2b-256 9695ba94ec6befd2df4a83f27a3dcd9b4ae35a9380a8ddb970b4c7e3f7276c93

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c984f43bda27e3f8cb6d7b879d4ed5779b52457eecae919d43cbf0015f2e49ac
MD5 a1c327c62b698d8940d53f1782d90d7f
BLAKE2b-256 8cb169cdacee04cc1ef3a9a42f8672dc89d1d7b505187314e985e0640597a4fb

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b97a7c5b006d4a6e797896d15a8bf43b4799202d8dde41d317403c7e22347b30
MD5 31b298922ab32ff4c76f4f54991f88aa
BLAKE2b-256 db206ad8140dcb8d666541844da499131cf5d73057870d65993989bc1a4aa369

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed48ecc2d9a3d1594b319549f29c0c944ad598b6927167ce16751c8f8acd9ba0
MD5 16e81334c2cb73e58b94b58bd0b4ff6c
BLAKE2b-256 2fbba83628e69f456faee493ccf64aa2fcd0962b73ca2af327fe2a4b869d568b

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c751e6b3546881f0c6d9b17b9d29688282a1311373f41ceccc0dd2f89bb7fec
MD5 e8a7f6a364d06c10b99daf31aa285631
BLAKE2b-256 7836dbea904d78cfe8128f7ea060fe7128beb7739a5dfbb60906de29b22a1830

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50d710644c377c22d066b82cff17ecf4e4a5af032248facb045ed41d47813290
MD5 0a0c917f121f71c44a30a12f274df282
BLAKE2b-256 15261624d2e6220669fdf29c944a347b2377053b1e001237725ddd6a7df97ab2

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f97cdd549859fb2cf3ac0160750fac89cc54331c5793743e7a3eb77c79a5c794
MD5 d0ac834e3fa01f09f9ef9827c9f86c77
BLAKE2b-256 5ab331bb93489de960c6cd52654306811c2ce0475d90618f5ee056a74d676afe

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b04fbfbb7677f1471053b7c4fe5cb49997c66480947f87db00419b31cc666991
MD5 034fd27d834c1c99bd86e31e08480c04
BLAKE2b-256 04513d7dd348b6b8b2ac397b2d9aedab75bda8b296cdeef8d5095f09e762b737

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84878863c66da7972f67de1ee3a8a3dee7b154667ac69dd2b8b26a933713abb3
MD5 22b6d3a43b096e35f1b01d05bf3b34e6
BLAKE2b-256 8bbcaa6a1960899f1c8bd56bf287010febbd07b792a30ca3a1f8124de7decb83

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 477458e6ed7e23f8907880af56b0cafc6612afdf8e7ce72221e26555658cf6f6
MD5 4b098dbca0580a598fbad68223d8b630
BLAKE2b-256 84ef063b4eff4ef3f93e7a2a60d1cadc66654b0148e7b8d960ce56b6ea0c513f

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: rapidfuzz-2.6.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for rapidfuzz-2.6.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9d16dd04f2b92ac1cb85f095cf000d645457f2b4d805dea26126d9e5b732d259
MD5 d4b93cec666da82deab2dac8c05a892e
BLAKE2b-256 2dd83def3b25b406068a591fc1e1bfc108cf83c30c8710ae8cf2ef94c2029106

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 535b14b5bccc43cdba2f7b110e0d1fe4de91b567ce2e89f716885189cb378a18
MD5 22fa843924f5073569cda2b0f3157e50
BLAKE2b-256 8286a0abfd6843edd0409b5bfec25d56599570af3d787c017fd03afd6d7b9f27

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 b4e42f545c3c864fc283add1a228db8def4d31434024293708316ab1df992d9e
MD5 83eba47c20e26da40c3f4b9833a562bc
BLAKE2b-256 9b2c329ae9ec5bed12f751b34bfb4eab204bb597b39e7b1aa5cdc723b99907ec

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e0f02278762b965b3d11c6e92f3d0508fcc558b818b6443643368e96bcd45612
MD5 d8df31fe578957939da91ab5f89fc10b
BLAKE2b-256 8e846fb772c2cca67ffaa7c1b0b1096ff751f63569ea39c3af4629a9cfedbc86

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 698ec75cafeb149c78ad6b6879ea1a027c01f7a19226b87b261d9a9e211f6df2
MD5 cb843a856b2ea8f82d89321fdb898472
BLAKE2b-256 3b6a72c6b5d926ae8633377a4e0000d3a67cb4ff229e4d6db341c89c0c124592

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 33d9b054c27afe36f60bc4221f9c3d941c53565403ab7c4f481a444ba223591c
MD5 d5c7fa6373c42abeff1d435938b16339
BLAKE2b-256 d1a7c13f71f8c8b0de42f10ada25c6f72b98513d9ec706acdf0ed6c8bc5caeee

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ab58878abe72baeb9a6a118d08ef65333b0ead8aba11881984a8a995cc8b8e1
MD5 47ab4a09a855c8aa04026ff1c76dab51
BLAKE2b-256 a8b813774a62f49bfeffb6fdb75bfa3157c71cb53336ab0a61f54f78d558db34

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f94c50fb5795566d52dd4d0e6ea7ccae95836ca07c0e5fd381368dc3ca238bb
MD5 cfd1dee8bdca1e5818fa26bc12534616
BLAKE2b-256 0b88b32ce987a00fbb96dff6004c2151911dbfbaae4eee15987da2ab48f2d3d4

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43e71d595d19f72e54ec0622ffb9a80849ad5cdcbd4bc95986c534c48debacfb
MD5 3d354d9d86441e19da96e445ec2fdf8d
BLAKE2b-256 3857c37ab5230d03cfd5208c0f17bf606995b2c45fc6276f597b4d799642e237

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ff1cabeecf0d73e5530648ceab79d3f5f707aca222432e58882d7bc8bf96a92
MD5 e26bf21f019dbf201ffb219dc8d239dd
BLAKE2b-256 91388317b807c63536620fc3bc28c56dee0d212fd8525cc9a81b197cc9f2691d

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 885818956bcaa83219229ad57f61536ae5afc3507dd53c9fa0bc5a815174ead5
MD5 cdc25ce9841a2ede157916b03cb4f97e
BLAKE2b-256 4172423c3e4301409f9800b79bec2d71a67dd97cf6f724f8fff451f0258b63f1

See more details on using hashes here.

File details

Details for the file rapidfuzz-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rapidfuzz-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 959fa38f6df17fbc4e99005e38634242a7fae13d60fdc5bda32402e5f6fd99d4
MD5 f71a66ff99f55e124ddeba3aae884b3d
BLAKE2b-256 63f6c70d02ad33799dcc21fe372c98df75d5523042f86116ff0615001889a496

See more details on using hashes here.

Supported by

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