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

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

Uploaded Source

Built Distributions

rapidfuzz-2.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.7.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.7.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-2.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.7.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.7.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-2.7.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.7.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.7.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.7.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-2.7.0-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

rapidfuzz-2.7.0-cp311-cp311-win32.whl (1.1 MB view details)

Uploaded CPython 3.11 Windows x86

rapidfuzz-2.7.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

rapidfuzz-2.7.0-cp311-cp311-musllinux_1_1_s390x.whl (2.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

rapidfuzz-2.7.0-cp311-cp311-musllinux_1_1_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.7.0-cp311-cp311-musllinux_1_1_i686.whl (4.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

rapidfuzz-2.7.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

rapidfuzz-2.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rapidfuzz-2.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.7.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

rapidfuzz-2.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.7.0-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rapidfuzz-2.7.0-cp311-cp311-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

rapidfuzz-2.7.0-cp311-cp311-macosx_10_9_universal2.whl (3.0 MB view details)

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

rapidfuzz-2.7.0-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

rapidfuzz-2.7.0-cp310-cp310-win32.whl (1.1 MB view details)

Uploaded CPython 3.10 Windows x86

rapidfuzz-2.7.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

rapidfuzz-2.7.0-cp310-cp310-musllinux_1_1_s390x.whl (2.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

rapidfuzz-2.7.0-cp310-cp310-musllinux_1_1_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.7.0-cp310-cp310-musllinux_1_1_i686.whl (4.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

rapidfuzz-2.7.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

rapidfuzz-2.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rapidfuzz-2.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.7.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

rapidfuzz-2.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.7.0-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rapidfuzz-2.7.0-cp310-cp310-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

rapidfuzz-2.7.0-cp310-cp310-macosx_10_9_universal2.whl (3.0 MB view details)

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

rapidfuzz-2.7.0-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-2.7.0-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-2.7.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

rapidfuzz-2.7.0-cp39-cp39-musllinux_1_1_s390x.whl (2.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

rapidfuzz-2.7.0-cp39-cp39-musllinux_1_1_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.7.0-cp39-cp39-musllinux_1_1_i686.whl (4.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

rapidfuzz-2.7.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

rapidfuzz-2.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rapidfuzz-2.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.7.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

rapidfuzz-2.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.7.0-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rapidfuzz-2.7.0-cp39-cp39-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-2.7.0-cp39-cp39-macosx_10_9_universal2.whl (3.0 MB view details)

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

rapidfuzz-2.7.0-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-2.7.0-cp38-cp38-win32.whl (1.1 MB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-2.7.0-cp38-cp38-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

rapidfuzz-2.7.0-cp38-cp38-musllinux_1_1_s390x.whl (2.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

rapidfuzz-2.7.0-cp38-cp38-musllinux_1_1_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

rapidfuzz-2.7.0-cp38-cp38-musllinux_1_1_i686.whl (4.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

rapidfuzz-2.7.0-cp38-cp38-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

rapidfuzz-2.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rapidfuzz-2.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.7.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

rapidfuzz-2.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.7.0-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rapidfuzz-2.7.0-cp38-cp38-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-2.7.0-cp38-cp38-macosx_10_9_universal2.whl (3.0 MB view details)

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

rapidfuzz-2.7.0-cp37-cp37m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-2.7.0-cp37-cp37m-win32.whl (1.1 MB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-2.7.0-cp37-cp37m-musllinux_1_1_x86_64.whl (2.4 MB view details)

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

rapidfuzz-2.7.0-cp37-cp37m-musllinux_1_1_s390x.whl (2.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

rapidfuzz-2.7.0-cp37-cp37m-musllinux_1_1_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

rapidfuzz-2.7.0-cp37-cp37m-musllinux_1_1_i686.whl (4.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

rapidfuzz-2.7.0-cp37-cp37m-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

rapidfuzz-2.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

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

rapidfuzz-2.7.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

rapidfuzz-2.7.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.7.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

rapidfuzz-2.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

rapidfuzz-2.7.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-2.7.0-cp36-cp36m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-2.7.0-cp36-cp36m-win32.whl (1.1 MB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-2.7.0-cp36-cp36m-musllinux_1_1_x86_64.whl (2.3 MB view details)

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

rapidfuzz-2.7.0-cp36-cp36m-musllinux_1_1_s390x.whl (2.5 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

rapidfuzz-2.7.0-cp36-cp36m-musllinux_1_1_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

rapidfuzz-2.7.0-cp36-cp36m-musllinux_1_1_i686.whl (4.1 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

rapidfuzz-2.7.0-cp36-cp36m-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

rapidfuzz-2.7.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

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

rapidfuzz-2.7.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

rapidfuzz-2.7.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

rapidfuzz-2.7.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

rapidfuzz-2.7.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

rapidfuzz-2.7.0-cp36-cp36m-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.7.0.tar.gz
Algorithm Hash digest
SHA256 87148b96fef3b9879f7ac4e5e9aaf51641b8bae3c9d1034a2ce658a3aca13647
MD5 e9eba04e1a50f596d53f3c66ccf6113b
BLAKE2b-256 f553a35914f864d4857463fd1d985b4dc336ef88d7b41236c88965c46079c59d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 430a8725a94dcb08b8f90945c66039f541c1b516d51594b83f81dee0ec41468c
MD5 14a835cab603316eeef8929520ab8ae5
BLAKE2b-256 a034e4f98cafc79a43de96503c9591a72c5a06c5789ec5a64a4437456c314eb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 485822901c71401c8492c3dd68307ee0ea6817de2cf4bdcdad8c0ea07273154e
MD5 8a7fbf582f443426263ad0870c67c8f9
BLAKE2b-256 4a9b7ff66303c078aa22dd25476ab31f67c1204f5ce6f7adb343c36442727c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 376c5abf9db2b19f479eee57234e066e4d322088143cf89fd58c99ff8e6deacc
MD5 62ac03156740dd19b5432b68e13b3417
BLAKE2b-256 9bb37f016431a2a847e38212d795ce06bab0437217135c35d34fd5166c0fe069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c2d296786cedf2df4eca6385ed7fa676943845f8425cf9772a6ae9940f9c6be
MD5 6f8e3067e7819db384257e1335eaf884
BLAKE2b-256 ebbb329211866cb1751f6d136bfc4256d6a694c9f405cffe67ccdcef52d91542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 452b5f803591e03da24bf4c2b037f15366e23e72a714c4b249b2ae2d53811161
MD5 2eeb79a0feb1f589c23dd38d0c46f1bf
BLAKE2b-256 3e0ead1950deb2771d884267e3c68d37432d41154991845555691f0e1e064183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ac8186d282d2e978b17c8c0626751256454d3a68d438b2e7ef8b173dfdb8d4e
MD5 281968caf07eee445c252a12c057112d
BLAKE2b-256 f08abf4c539fda4584b41267984fd870cce0d092ee8d38959c90f7910d83de8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 022af670b38996a9589b7835a1e0ab11218361c1bce847800c2b53416a66da7d
MD5 e3d92e3fb629bc0587c76efb250da873
BLAKE2b-256 51e83d13ff1c48be740653911ba3372e5a533320a60c10401a8d9330039a86ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d4796bf4b52cb49f646e58c5ccb3d4025f9aa154b60776222dbcd8edb2ee539
MD5 c598ede14a3a7a734e817be02459e334
BLAKE2b-256 b0f9a520de3798620fd3088d58a6f7252b3d35b8f90dbf519daab3042b39410b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ff9c76c560013a7965c597c25c1395d87fdeaa84acedf889ac997c9369676cb
MD5 49fec260c6d0cbd6e72fbe1408eb3036
BLAKE2b-256 8504bfe9078a0b930ec606b15f04ba9da94891f89eb0b7b1b339de84257a43b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 396fd8d5dbaf19a25a1ed6c2d87ac7698272ddfba90ca69ee5eb37b44ef9f247
MD5 ce22bb68bdbd961354d9ef389b9ecd33
BLAKE2b-256 cbcdcdee445562621d7504023799f1776f143c0297b088926bd29b0dca05e634

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6544b0feba6f2a09b0435f459f80e7703cad1a66d1dfd06ec69ca7b5a491f5fd
MD5 39ab233e672342a72abb36b23d70d185
BLAKE2b-256 6c7af036e4efe4f84c3fe004cd7e93cf13704c0538ac73b4f3bde53f3d0c7f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ade0d2678e166636c74935c70fe92edcd57163a093973a23117a7fe6917e7b22
MD5 5b0df353a33d29dfe984fc0ac580d8d0
BLAKE2b-256 4acffc8b1bf0e42a2e07357f2a595b66fa8c8e581adbdbe2be208fa8c5ca6105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c573260912e17a7b4901c3da262f8c997ef086e40177dd9db65da3b90a327a39
MD5 05bd005a0957d41fd26fe6a70c0cfb3e
BLAKE2b-256 7c0630d72feeba61b362712a1cb92945353e4a629ca4f024db281d46ae899f4f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 26a50285c6720689f4e76f2ee54f961591a8872c7f114443047e9ca871d5224e
MD5 f974f4d4d6758bf657735ccf52a21cd7
BLAKE2b-256 81bbd16935c73f95787717e29bf9c4e5d45b52daef3ac907add0c97560235ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 26be1fa19581293a03d2765162a8b7db5cb12b9fe2ecc8176b71a10613303d35
MD5 5f6f89fa52c6b2d5ac79d0b913a00de0
BLAKE2b-256 7f55d2464e25f1212a7e202befc0dae217ddc3335bf2c30704dec0c9286826b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 996424f9da9ef08c6a3aeb0f76aa8a27d9110f7c698f0834635eb515f65dba4f
MD5 90a7d27a5610ee8ccb3408b20e15930f
BLAKE2b-256 9c7b59c3e864a74ff79036a62f8a0d6d7faa0fa47c4059d1eec8f6722fd9417c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 722a30af71e0b7d9c4b6b6b1f5addb782ee8ad9d02ebe2461bf67aeb294d4b3b
MD5 fed02ac5837648f9e4c3ab1db18c0f4b
BLAKE2b-256 87f4515e165b6f19d6ed96cf8c05272f82c341fd0e20ad2d723567368cef6e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b6ddc7ce0f5270b63b1eb65623830ff31c60b00f67018a52059c4d8a71d71ba2
MD5 ea0e31d936b2bf505526056ae5b7e073
BLAKE2b-256 7ca8c546ded6f55d253fea8e4b112f4c2ba87ed4aab20c562400d91a8733a271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1738bcf58d1c6da885994c0d77e7215a6eabab134b6132fd623bf5da6ca03982
MD5 9fe06ba8c85d6a93422cf5c5ea707f81
BLAKE2b-256 05c42cdecabfacfcd6f75cae9a1bf1764b31d7a3845ff992257700304e25ea63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c9707f71a4165228d6876995d0ac0ada085b9c3be6e0d47f4f76bcba2c89463
MD5 6fc6691da2a5948de8430f9e3839060d
BLAKE2b-256 30add56202b87a6f4e35062fd08f66781296bd16570c6465508f6c0efae0f8f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 215dcaa6436fe2b1f3d7c49fe983d0a7558d9e31252172347ce7044fadb15eb2
MD5 937ca8312dc686ffccd43edb8d61f853
BLAKE2b-256 e2b3d2f2b1a7c41c4da793b18a8ae6656d1c364ba4f889d7272ad19a9de6de1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a3bf909f54bf9058f677777bf29ef8ec8e6eae17460f0f6c84a107e456a5576
MD5 a0798ceaab09ead55f9456b58ac2116b
BLAKE2b-256 c610e9b6932074784c47572982ec2ba9bfa9f26cd5377273c61540523d439332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a19d5efcfcf4a94794f601e58547fe565a96ce847226b4a0ef781a97ba781a5d
MD5 03a2b98455d74a841541e916b408e0f4
BLAKE2b-256 20b26519dc5747932d13985443c7eaf10810316ba924187195c8140c1fbff452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2c03f54b4b5b502e0cae2c96634837889be271c7b35c9494bb7284f7596eedd
MD5 dce5b3fd02d8d989211922b23acba73b
BLAKE2b-256 704c00622b76e2a27d9fdb41acc332029a104369c9b17d70775c4cbacce36a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9d94fb4f0e8e19f3e9383ff128324fab26b79ed78c3a9eb5588b0e4b1f5aa4a
MD5 b5a4ffd90a7eb2e319036e8e839f9e4b
BLAKE2b-256 920a16de18013c664797472d83acb1a0f945387720bf9dd18f0fdff9b571fa49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af1ba4770a7752113cf4a7eb87c8884352b552c890d5347d5fb92ff08eec50ef
MD5 7ace10f35bd56760ef9c22218e25c8c5
BLAKE2b-256 c5262f7d968adf600694d1e374a62041f72b99cbcee34237491ae92c663de890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 422cef2678b1bd609c1556d17e8021f342e6416d5d0b2ee46c9954c22a8a50d8
MD5 87d46de2a53346e5eed02f4a2bbb75c6
BLAKE2b-256 87d4343d52f52e756b029de0f18d2258f4049fc5db53d91d0d6e98abbbf94949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 20f8f352dc3957993a2b2432ba5bb23e0021cc223d592a1a28b0cd15b0b9f3fc
MD5 41bf4c878089c7b60a30a4f5ffb28d68
BLAKE2b-256 23d5091739af831931f5d56a6d8c68f42a838ec7baf7aff72dd37432d022afa8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 65164a7008a72ad4f1fced78da8d27cda3fde197d58c51d5cd45db994c96a38f
MD5 aa1ed878c847c9f8c9624810f1f1967a
BLAKE2b-256 f1837540e236b32acbfd9ed05d4c7649400a4a3fc83a730dea3a2e599ffd61c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3e0e8830492c87de5ef09ba813afb78f8ddc5f1bdbd3d190e32b0e54b49d0eeb
MD5 cf8c69ade165d757bb6b71f896686bb7
BLAKE2b-256 eb4e673914b0aad927e79b6e4dc9aa4c2c0d4a0dbb533840d08bcba87e9f31be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 29252899f9fee6f68d479871613f8e37a443085befb08eb416499a2774fde481
MD5 0f7e229fc6f5d7275bed223993fd7819
BLAKE2b-256 b5cb6338fd4c757180ade136935fbc06bad2f4a5de6fdbf04dcbfafbf0683aec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 88368b336eb3da2dcab3a7877cf59f5b192a9aba8270be2efc739764a6c32d6d
MD5 206dec1c2733acf93e78e795b92b9c86
BLAKE2b-256 522fac1a49c298316b3e018d9c6c30bf8266e761a44ec87530c05d33c38a449d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 017fd354a07e32f38252f2700227bd9653fd80aecf8dd55ac47763ed0aedbb27
MD5 28e73cce2d95775fdeb31150ed37b067
BLAKE2b-256 c79ee97a6491ef58d39a721bc552a83c3609418c36bc0d1bd270d500c48077f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 51c007a0c2196cd5792e174e0cd696cb7f322959fe89723601c98b4270948c9b
MD5 0264f9b1db37e7d62a74d4d505af7670
BLAKE2b-256 518b3380a49bdbd48e68e398d2295faae2fcbda1dfb423e2d38b1169dcef7a13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35f7beb131cbe38e2b5f040710345fa8a8b0e01874af1a5ea7596eb4637b37b8
MD5 599029a664d8e89d505d4b034d295ba0
BLAKE2b-256 cd90e12cd874c0b47f379ce8710224ad48cee2142344cfbf6c6d4bd82e74d07b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 12960801ba7c1838ba24a85c8d8f65183fd71b1e36e5e25fba7f8a986401e159
MD5 130e60523d05cfee98251f4be2cc8ba6
BLAKE2b-256 11eedf854a062c0ae69271af905a3b6592a976750221344484ee905f51080184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d2c95cc2da2669ec96eae19eed8f625bd3f8715a5417c26523c7dc3257f492f
MD5 04352d348881dc66e27a37ccbc406e86
BLAKE2b-256 3e6caa83a19ec75ce2f2125e2321e5cdd6687f40f458412f2ca3f8eca07f7e73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e0000b21e6c3f62ff365987ef6451f92507d3eaceeef038a06299be53e9ba96b
MD5 ef082ab81d6d705ace909066582fed09
BLAKE2b-256 fbbcfc473798cc4162716e03b52c4855436366ffc309bee3dc6afe2736882402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9dfb2672e94cdd9cc4516272a32b16c496f4d5a93ec5d87e733e6c38481e802
MD5 c4011b7eae4e3fbd2d2aba664077a846
BLAKE2b-256 975b2f1954490e82fc98266d26c63a0a9d6b87d89aa20f50e98c3420be96c8b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bf33fc391f6e74f8c90c217ab6e25f09f384e76d4629c679f5a130dc85c83d3
MD5 7295c8b5225ee98841b517fdcf4d28bc
BLAKE2b-256 2310b3c552be6815f5e9d0b98026521cf48f4ab3431c0d46dca7543cc7525360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7dfd5098be4d05370ba41affc214b0a6a96279ec96eac39fa3ff4aeeeb2112f7
MD5 903b38e063270d5f8b3d2b097ccf59b5
BLAKE2b-256 af94b3986272835fbda47406478871a366d72042b74badc557dda52c20647262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 12dbfa6e8bd696f184b921ac45601a89ddd866f1714333db29132938b3704e8d
MD5 7bf2f117f3773fc39f1020e8d521abda
BLAKE2b-256 1c896be690219bf60ad7f54eaeb4f3f6641bff6555d6625c7b825f15c86cd848

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0cfb4ea7886c5850cf4bab276f6f9966b0dec35132b3d098d965aeb6e28df653
MD5 7ab0eb64153d77982d61206df0a3aaca
BLAKE2b-256 3ea6fec60e82f243046a88e839cd51e5672abf7453166d42df731a9a31e7d403

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a7eecf6fa02149728ca65f903564bacbd455baf216187cc0ef627be9229a9064
MD5 e4b7dbeb2c9575afa491d35af0c5287a
BLAKE2b-256 149914cebad03e07b820999b6fedfbc8c95d3ce8f4e252e38cb8422919392473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 43e4cfcc76e984435b38335e853f181e9617e4172b62e54157a084ffc3973cbe
MD5 3ffb36f1a58efc315fcf7141d0bb79c8
BLAKE2b-256 7798cf3db8cd9d7b54272155cdc43dc018ed00a450b3db6d4639bce3fcdde005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 b0089b500b5d1745ce73ce3af0def5a6e394a8fa1cf67c6bb578e467a47e34e3
MD5 890965b26af2af090a61f4629614540a
BLAKE2b-256 09cf33c795a424bb6ae87a34f03d51e4f2869a096e47e18347b269f5e7179c9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 705df65dbeca05720c53e75a9f740724fa9c3363c49429972084c60a5ea23a5c
MD5 1212415d6938965cf2efd00b050b70ae
BLAKE2b-256 efc6f5df976bd8728fa6e930f331b31770a44be8830a8759f61d9ce12b190bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6eacd9fa0fd52df814c84d66938343e38378e674afa448cb6954654778ab2b4f
MD5 3538baaf52ddd8c55d02d4e29d691edf
BLAKE2b-256 b795fa1090344110c06b1df20c4bf31499bd0883e5b00a66f50c0496451941f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a5f8168e4d5fc0ac2af16c92a0e1e47ea5994812eed8146dba8906ae7061f490
MD5 a1e0206bb519e7e08ec3f2ea2c4e1712
BLAKE2b-256 4cec8a6a04cb778b44e66d81ae1cb9ccea53a49bab4943736b4271e46a65f5ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 282b017728a529a369e2da7d14e69badc7278592feb610d1440424ecf0a05f11
MD5 b63cda644d71759158b48fa22a1de91e
BLAKE2b-256 a02abca22b3fb28a30725a64dfee17639fa5841b8326a537b9521df8cffa64ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 edc8368a7115c4432e4db6364c6df10bf5760cbb4eff3d1a8085ff43e4b77bf3
MD5 ba4c7c7920a491d6ebfaeab2cee1b961
BLAKE2b-256 f2be56e370e3e8161588b2433e91f54beb0bb0fc73cc2574571e58abe615850f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c94e5b43d03806bfb2ba39f91212745e055ff5de19e6819583703c56429d086
MD5 5ff1dfed5c09725a5a5913a859f0a1ed
BLAKE2b-256 2af5bca6a02ffd39fc03db00b52b976aef04a134545bb85c33481c5bbd259ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8912f9cf93e6556d776859c918040124859eed548c3e884fdb5bf011fec586c9
MD5 bb2b6330ac23afe09a79b80a31ea74bf
BLAKE2b-256 06e63a606cbdb9fab3a9d62ba923ff6f3590c036feed43474b3c22711d3bd211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ca09cb59b733a3ac51c3223c16e3a84d4ac0c42ef07ac8878a05194a1b3b002
MD5 fc08c4161c78a34439ec8098224976ec
BLAKE2b-256 ef22fbdacfeb69d88a0ae2367d04b219b07f82e424625c4710d8c83b3c7b3a93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cca0b1644a6dffe922abcfb545f60529c2f265840a29fcc858caba3c6d5054e
MD5 0ef97bf1ebbf1e647684818904614edd
BLAKE2b-256 b33c0c6cef779857f18dcf5bc8ce6eb07f804ef6008ecd3db5bccb3923762b28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 427daf99f5fd0d4756f0d46ad8e6d8f36e2e86f78b6090bf940660c5ab96e133
MD5 3a42dbf23b31708dbc731de6a6dd6252
BLAKE2b-256 4e679f5e8c587659f0c446c053162f3c50d240db7e81592ef2c497dae9ec0ba2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 eaf7883df15bbe78bdd5b157d6908ec999c1e09ee8892177af050f410a2cb14e
MD5 1eeec82871f194bd6644afec7be26414
BLAKE2b-256 5f60c5ebac5a6d1c30eb6bbed74ff2f8fff608e5300d719ea943e98cd7fe7cd1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 20a35cc5028da7e4af646718037d63d23c8b820648b3eb61185d1522b693ea47
MD5 f9de0e419d269ce657df381e9cbd77e3
BLAKE2b-256 869bf9732f778436ac7c1187408f10fea267dd41ac0a0bbfc0bc458875fed864

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c79dae916cacffa40d3b49d50620570e09c6b5a857813ba399d7509f92895eae
MD5 23ccc83e93111b3fa61ef8315754c2ae
BLAKE2b-256 7c19c7aca0c4cda01d86f4c413fdc985a02ded65df0b6d388a0d019c6fa01288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 60756b86d7acf955927df5c533f66f4cd55003a5fc1ac9bc23f6e2e00fd33a60
MD5 c8b72ff3c516997519c36a81636fab7e
BLAKE2b-256 2befc0c2efc475feae6872c65c6778ff695139c9c626eff2d263732ed9926d9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 0aae4c0afe08b5ba5bfcc9f4b027761e8c596fbe7700a0c90926b85ae4473a2d
MD5 83a3155cbff1fc25ba67ddc226dd6d7d
BLAKE2b-256 fdc37661cb7d906cfb8944ac38216bd825fe80e9ba4c94b39a2bbd7bc308e0ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b115372a2f346031c7079b642b597a6aefbe60dee4e88c3821aaa8336ab506e8
MD5 81aa5d3e60052b149e066f206ac16bd5
BLAKE2b-256 591d8b53a48fc81822df1ccb63d90b41161b21108fbaa641b80f8dd6e8fbadb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 465b3ffbfa8236a6856aaeb8c6cbc16fda93a45b818e219db515b894fa29bd3b
MD5 527ef348feb47054715273c592583a9f
BLAKE2b-256 fc58fc11a821751551fc772a771eb531daa3dcc6eb1e787e4e71b11141c917da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eb2bc3650df2cbbf01d1936977b11c411630481c90c020a9fa7b20b0425e5f06
MD5 bcf24779eb32ba7d5afdacd41677acce
BLAKE2b-256 084416e0ad5fe79f87d0a49dedb7bf33b04a647608ff6b5b0e3714fb336e3e4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30fd35596215d56fcec2eee707e0d636269c748c8a58eebfd4bb6621341e6ec9
MD5 8aeff0f4733cc3a6177db93950ae43ad
BLAKE2b-256 4f6408421557aab8215e61d472c0880e1971076ad0129bf7768f53df54dbf2f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eec1681a36115ee1ab4da5f8ccfdfb6bd6c74e74fa2f914bf0bd998defefb73a
MD5 37c37548f1f019778b7c357b4caf2f11
BLAKE2b-256 88ab819f0afed660d2a7a6cad15c7942adba574669743aaf29830117a5bc0e6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94b427f83d3db7f30e9edfb66040baf554870a40b78af0286a25cad6e6132ff1
MD5 832b5d291effddd7e9c2b40ce7a7acd7
BLAKE2b-256 a3bcd2f9ca31c16a71b7e785643bbbcc27c64951c259a0b59a14192b9d6dc2e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3b24725bc3c78f5e6b9b1c8bc3cc88b50c886a5f86333ef884f508d66649aa1b
MD5 6d1b5b71aea72a1234c73b44497d7dc9
BLAKE2b-256 533cdd52102a9d28336e8c66cb47c81a90a144cbede2b7caae2cc62518a490bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94c551ac3f327492eea58f561dbad953621c8c798c08c91fdfd99c2ad01a5add
MD5 450f08f7f8a8f4ae78a567ee99aa8b51
BLAKE2b-256 213e37f06166d63feb28e68eb02cd2baf60f0b4ed0ae727367e006bae1f9bc52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b0fc6766d55d1477a3df6f615afa39f6d565ebff8407e229f056c52de4ea39e
MD5 386c363ead093f1ef462f61ca2fb7653
BLAKE2b-256 b4ccd6ffd492778b7bd8a68c2955305638c5dd4d71e7c93dcd08757bfe255d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6539a53130146d793724623896442c56d5558da126c6bc889c6e6da0652b6751
MD5 ee5ddb34117abe585e3a72efd22ef9a7
BLAKE2b-256 a0b9eb1a8b1e5baf98154ea63d7784e5959bdaa6c3c9762dc63ad3f7d07b7f2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bbc97fff471a01123657ccf12a92806f874d02f36ebdd9014cf455d61a5d8f38
MD5 c0188dea26f09d7b74b00e697f8c864b
BLAKE2b-256 c25f1eab53e53d50cf000fca4af71b6c48271b55794e170de7c9492863d379a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 01f3ec4610577e4442fe51a572cb314fb6d802dcacd1c325d4036188b4cbe6f7
MD5 118ba487029257cba824c9c281e8877a
BLAKE2b-256 3562b758414f9196c7bd51bba8642907c98817fc8107d887d731e12ed0e71242

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.7.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 eb6d2b10ea464ac28f6bb10f3a7e6729f86f1d6ccd76ce0a6f2a9d2dc267b791
MD5 378fbebfcbdcf9b6c935d8c02bb7ee53
BLAKE2b-256 7a04d1ca76a8ef6329c36d62edb6532462368744196870719a701e7ed6960608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a4cd8f048030f7ed3cee6e744e584081d6468b89360a3d569e3a4c23b4e25645
MD5 bee1229b7b96eecda5efc61ade9119fe
BLAKE2b-256 4cb68db4f531120c4d23c109f5e26787dbb744ce323180c9db753a97686a0774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 6411b0f0e6191b821a693054f2ac4f4c51aa46133f38a32a17efd610f15c98f2
MD5 c2e6d835ea8ce91f7cd32679ff5d4c70
BLAKE2b-256 2b4a5585ff44ff996dbf99816f0063b55893bc5d0d1db1e4756f18be214af5e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 2b2c6f8a875d9463294e0502e9a1a1490f140fd22f14d6a6bd0027e28e4d6068
MD5 b6e8e0c37e29ea095e540edfd4ec2df6
BLAKE2b-256 f1b028daac2931b16a02090b5f3b16972ce322da9f39d29dd9df8393f8f48549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c4cf79bc61782934f20af1414ce3dee92c27f43b7f86ef0c1dbbac98dcae38f7
MD5 5b35f17a78d6c755efee64243608aaa8
BLAKE2b-256 2d7e7821322dc1c92df837bf41af7730940070b4411222bb341b17c106406662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d9cbafe5741625d7daae591679a74ac2c553986f684dc42a6421ce856c2286b1
MD5 3a7fa3f6eeaac2ea1543f027074003c7
BLAKE2b-256 06ae758c1a36d6effa409de958f48f5fd7c6faa515b6745611872888cfd1f607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 177637327d836fa3e6cd37390afbbcb1c73cd407f9d53a290b9d751fdd798536
MD5 908808c487a9a1aa5461a56033aa5a6f
BLAKE2b-256 c8197c12258e41ae7adb50e51456acb11cc8862ba985d3a88730b4acda127b6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c42b1b52060dfa9c93cb3218f4ee0e4a2bc3e280d91e91249ed997fba94e9d8
MD5 925e379d478a656994a20f2111194b99
BLAKE2b-256 1ef6e8965d94aaae3148d6c17380c0e108e8d758001f88bb6e129d0aa63eb7a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd66befda22b34b62231440f16ba242bd81cdc73ce224faa3b5dd5eaa022cf3c
MD5 2b5d8b120c18efbb66880787cfd1d35a
BLAKE2b-256 0c468c5e68944acc6b68a85a17fb20e86146198a04636804ebab827209d33bf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b0f32a7df1a0db0db4baf62abebb7b1efdc77b2e81291df301a621ca01ef98d5
MD5 ccc0fd55da90c9d93454a68b13c61cad
BLAKE2b-256 af9d9a8e5e69d13b8a350b4ef863b6d7c59d7158cbd029cb9741514474a81b69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b28303906a611275dfb1c9e1315df92a96ee1b2606b6deca55ba0a5d5bbf2559
MD5 b0f9b78b4b03a54c513986101817ee5c
BLAKE2b-256 5d3df3a81ca169fe9f547f9ede8a3d6c3595a9e8a82393fc9ab1439668333a67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5545584c49cb8ace184639dd86fe1161516d59f195b1b9f1ebe80a57ecbeeaa4
MD5 596018eae06000320ecdeaea7cf96472
BLAKE2b-256 e8470f0cbbb20263bf022570fc3b15cb77e5cb15d9e17d9543cc604f6820388b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7a71564fd774b270916dbde8a71f3ff30f62efeca18356ea66c2f1f9eb573077
MD5 cb959f7f44a471b39a4f651a5a0c4a3e
BLAKE2b-256 06e8017b4e8996a89e025c26d364eb5801126cd524fb4791351e1aaa62c861b2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.7.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8ae9baed3a2d8b3dd0833c05ac9eef84b864734c58020d7a00126ce293606b84
MD5 cf7815a7977daafc44292129ffd7ff0a
BLAKE2b-256 3accda8ac70e308fe8b817297572d8b6b78ddea92b03bab7c8de45a7a8c1416a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7dd583974c8db2e5cf2b9aa627d2609474c35a59f7adffd81863f48397f9ffe6
MD5 dd560db3f7f13f052108d50aa695d412
BLAKE2b-256 3c231bb7334ac0b3c50fc1fe25ccb02a1a5d11d90cecace927a16528495d6b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e56926f6fadb54499bc4cd25c732eb02e2cfc61bcbcdaf7d24dd203c6c0301cf
MD5 a13d5f215e0569b9a879fed407fcf5b9
BLAKE2b-256 e61a3af3f97ee6e76fd1f25118bfc7f548fcbad3fa2651f5c537b5dd635e07d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 2bf8ef7954969bd9f560102a0a607c8e422bc44426de4d922c17ef6deba575d7
MD5 0d2953b1feb5e5f36c93d0afcf5578e6
BLAKE2b-256 34c2615683617d54d6ef15fbb411700fbe1a90da9c97579fd775da8c76c8e988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8b038d81fb1015821d0367fda64804ceecbd04cd913fdff6559824a7ce28f561
MD5 9e4210ffdac721477c1b1730aef9ce77
BLAKE2b-256 6a98125306104aa83ee425325f377419280d0f12910d3a7c68867b6653a5f9ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 184220d508a12f2bd33e713c66ab643a881b1e27bf9dbfc11c14347aff893a36
MD5 574c9ea59e6c91fe562cd717a7625f1f
BLAKE2b-256 93adcd25c527b77636bf9fa02e2c3c91b7f1940eddcbf9e9518fbbca573a55fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c41158f67022ff9083b66613d8591c9752d66082a4e8462267fd0206dd1ee94e
MD5 79eb622e702686fe3e9c54dd03922f61
BLAKE2b-256 f844c9f3b137ec1351cfd040ca3fbd4f39482738138ae5f4983cf27caafecf6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb5b9a0522b5d4e88c408dda200b3010bbdae3d1a39500da5021c63bae2bba56
MD5 1c260fe14c5b3b7870bdc3d7a3885e25
BLAKE2b-256 d9dd7c414de40405a648ae1b7d5f1547358b3f8ddfb754b3f7789684c56ffe22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e96ee532b63917d121c07b1b5192cc68dec58a33db18967cd6496cd1c9424a9a
MD5 c80a6d2dcfabb01c2c26cdb3c14687d4
BLAKE2b-256 53eafe0f84dff7e09740630a894ed763a24f7a8aac913635a429977bcefb6874

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 055f161caf56cc775d385e37ce5583fc9b93d0a85200305097fdccc44b181b83
MD5 468edc0c2a82ef37da6c36ae38b258bb
BLAKE2b-256 17c525ba4256cb95ec69e80905253a794bd3bde48917b862a275b6dbbcdcac3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9017d0a777c7f16d08868ec2e9aa9de87ac293f4fd5a5237bdd12996d3aaed8b
MD5 4a5334fcd13f80ced56a3b955883e6db
BLAKE2b-256 7e942c80893a80ba7b1161a0eac91ba5abb05d24ee984b38bda25d4a354b0f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapidfuzz-2.7.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cdb1af227c031660b413c6a98e9ac3243365dc73ad2f2388445d15d2fe87799d
MD5 2433d37679757704e200c55ba95ae804
BLAKE2b-256 87c4aef31fbd0ce2426ddb8a8a9b9280233e5b4f34e292ac4573c54f64928085

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