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

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

Uploaded Source

Built Distributions

rapidfuzz-2.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.0.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.0.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.4-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10 Windows x86-64

rapidfuzz-2.0.4-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10 Windows x86

rapidfuzz-2.0.4-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.0.4-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.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

rapidfuzz-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

rapidfuzz-2.0.4-cp310-cp310-macosx_10_9_universal2.whl (3.1 MB view details)

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

rapidfuzz-2.0.4-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-2.0.4-cp39-cp39-win32.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-2.0.4-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.0.4-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.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

rapidfuzz-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-2.0.4-cp39-cp39-macosx_10_9_universal2.whl (3.1 MB view details)

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

rapidfuzz-2.0.4-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-2.0.4-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-2.0.4-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.0.4-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.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

rapidfuzz-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-2.0.4-cp38-cp38-macosx_10_9_universal2.whl (3.1 MB view details)

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

rapidfuzz-2.0.4-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-2.0.4-cp37-cp37m-win32.whl (1.4 MB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-2.0.4-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.0.4-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.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-2.0.4-cp36-cp36m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-2.0.4-cp36-cp36m-win32.whl (1.4 MB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-2.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

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

rapidfuzz-2.0.4-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.0.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.4-cp36-cp36m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4.tar.gz
Algorithm Hash digest
SHA256 be606c5374f1d904d9270a2ec0ca9eb1116da722713cded4d1f0205397c4f651
MD5 b11dfcc7ac2aa87e92d90ff95ea2087a
BLAKE2b-256 9c07228233d026b742162bad3fc40bc2fe24ce7914c3b15f328f37cd5d387302

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf81b6e0be07ea1f6fffe7c642ef906314a34a39682a05b4f63c5868d357f61e
MD5 a4e1f4d03041cf5f455c321b92f302df
BLAKE2b-256 f9a17eb74a74686fbc739d959b627f0ec3c36be9f9ccaae8c22223c9ae885f17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: PyPy, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bdc906d1e942e862c5b8bae3a1fdae85756630f370531d8a27c599d5ea95216
MD5 a43ec2cd38416e41ea1663ed49ce8653
BLAKE2b-256 eb824c519db3574b1edd0e1b57861a5bedc9ceb2afd611b9cfa196b06da5f681

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f6c16528330ee0b9ddc9ca05c63501a30c52ab5e37368194ce63da110c663d1
MD5 0336cc815c11c946dbedcc366c574ef6
BLAKE2b-256 4a07cf81b28c95f66cbeaaf2bc632db6b7d2183f17581a309bfba9e0a4837bdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c375e5466e99df2ae1bde17385f947ceb842da1c5e678deda0c90dec5e6c5c5b
MD5 5468c3bc7dfb95e266ab0ab6fd535a41
BLAKE2b-256 0d3e4ff78370bc48d48c037de670c116dc88ccab6b9d3cf30b839f568e1629e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: PyPy, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2cafd79f672822bef024221da9e483bf69d9feb6a3b61f77d770cdeae408d564
MD5 d9b7a6ae37a402095cf338ce8488312a
BLAKE2b-256 03ee1a3255c99f6a87d1b22a3081b7d641691ab7f4fef10aae4c7d495ba084ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23d61dc9d51943798bba55e713026117ef8c5ced0413e06c1308a0accd256dd9
MD5 8d3eeb8313a70204ecf6de1869b88d77
BLAKE2b-256 8dfe85be19633c8bf268337d89fa0a221c1073e5580f5720ff1a3148e3d33951

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 29cb1d5770e6ceac9183c89f0ff15bc73dd40bcb0ef1e38517c851c35b62320b
MD5 ec630f8ed8701b6598edc41b31198da3
BLAKE2b-256 1bf8db40757dabaca31c83ae6cc3fbb14dc13d87f59ab6938a854f2d885103d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2206c32e15bdfc0f0ea88eb790f43fef9e0ebd9a3fb164d4b5584b2f737fea31
MD5 125dc63abdd0d6af38754c534b1b1a81
BLAKE2b-256 9001a4a15d49cf75bf7867b845444cc4ed5cccfeba943d0097b71279d0fec78d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9cc1cf404a3cd3f281e2c69d84283fe66d64a5f21e5c4a48f0438af309e2c009
MD5 d9f67062494b9a8adab1e207272ab883
BLAKE2b-256 bd6314fd17c4b5ee057a5af645aee7119a2639de06c6c306c722a47824d713c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 581679e17b5ce9ca85d88ec2f5604b0db832b1b0a1fe0f9bc89c76863511ee56
MD5 041457908e3cc177358d8b1cf1c2b156
BLAKE2b-256 79719b97cae4aed4faf08244e945ca2b1d4c494ed027b09fbd2525fe8899ab55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5f1084f218c61434ea4d913d03ddc2bf535c6199395e24d6e0e1f791a7011c4
MD5 b982d80436e263e62e1e040d335fdd5e
BLAKE2b-256 7a45083256ad3366920e93e4f13ef2fbef6431ab496792fba6495c8d8a0874dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b8eaf59074162f796b872b7384dddfc2894c81be55d9ecab18368cb7f4121f0
MD5 a8fe3dd6898d16d1c3040217a07e46c7
BLAKE2b-256 03121d9936d087edf6c24e933cbe83dcf28c8273ac9f6c19945fb3c5b310f197

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4493e6c1900c3934cb3aabee0e2960ab778f6381bae0101081230d6730881778
MD5 fad7e18d8aaf4aedd226cb58672eca6a
BLAKE2b-256 5195db187ccc6e3b8a70943c1a1a23a14f6db986618629a8c1edd47171ee4c9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5f05df27f50f5331d26b774424e771cbcf4d795b11a533e33640f370bd052dc5
MD5 9c13da90928c92611dfccd24c1baa28d
BLAKE2b-256 bbb339410f7e9891cbeea3bda861758be61f624acfb3baad6619e607968eadc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 433b2be3d75f4ef7b20771a04e0f0dacabced2850f51f473c52d100b890d96ea
MD5 8a61784c4411c1259265204dba8570b5
BLAKE2b-256 48557ca85addd2c6f5ade00c824f436a2f35f2f12bdc78e9dd27299d497ce4fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 23bdc487dcff8c2099e71295c4dcd89246ef4d57f412f5b3d0a88492bbb66467
MD5 67f88aee458271e994098c6d8e3f94b3
BLAKE2b-256 24122230e41e2776b62ab66f0cf13effa17276137b56977094650231414135e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed384e48fcad416843b4805a716b5b1b41d44f4abac8aded4522db7bb949fc39
MD5 eae2ad962efa0b1d9f9907ed4c50f0e2
BLAKE2b-256 5cb0647249c7b35ff834ecfdb11bf167c0c086f2618501245cb2f6bd40913eb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6a5cfb2d6bb9b027d5e0288019ed5cdb5f503ac8b4a380d36ff3767e95e1697
MD5 4762747b3836f40da2ed44f4f854a916
BLAKE2b-256 15892b8633c475e6ad078ee3ff092b34e3eb492cf9a41941d6f000b6e8bfe4f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2a8791575b35306821b42a2a72aa35a1267cecb0276636eb1c2e96986cd2d7c
MD5 c5a0714185b92998008f3e5da4b45d5d
BLAKE2b-256 a6b5b34019f26a914d70a1bcb30f6fd28918314af00b81a1baba4c098080f326

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a62c78d09562d7543d6d539848da96d621b04d084351bdb3af411039ec4c6440
MD5 ef85d23aaa79af087bb1ac13412053f7
BLAKE2b-256 7573ac2e452df052e81dffea8dcec8c3f7731d66a59f194452ba3c332513099f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b4e58ae11443126da0422174455191419ab8a19514735ffdd5435b8a2783481
MD5 862c74d6d1f04c1c0b17917f4cca7748
BLAKE2b-256 dd0a4b3986d99b0128d16941c21be5a2256bda5971af6ff16063ec2d3aa0ef32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 93186883c8e895aecc5f03a2130cbee793a71e45b6306eef19811ec6f19db628
MD5 cccbaa6ce262cc0a10c7a5bfff5ddf6f
BLAKE2b-256 b57114bdf80741e714b4625620b618c885bf89189f1bcf5e7a74e33a3ba9d4ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a25a3d90a683b527f1431b9443937807980283a3b746f3d4395a0dade7d9d9ac
MD5 2b6406e0e60c9fbf154ed80a94f7746d
BLAKE2b-256 fe63cd28c1961cb92089901e1405922f64d4ae87061ef7d065d84232028b8952

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b6c22b7b1fd63019426b86bc7d1414cbc3f265670186850e1ce0c2cf9d71506c
MD5 c42f57e699e1ddcda97c80821fb904b3
BLAKE2b-256 0af06154d8c18f8171c89db992d0a92d6c3276873d7223929eebc1554c0ba00f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8580336b030c5802b9130bff59b4c7b2018ab199e0414454fa845235a8eec624
MD5 9a7a062d9a4bdbe9abf62f3e0aef11c2
BLAKE2b-256 dd11796e8fc021499ee2f5c9f8183c4859264a3b6f22e6b6fbbcdfe86b74d09e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7bcefe02faefbf2223ac6da3d437c0e4f1e24e7d23487850b74024decf9cb18c
MD5 53c5ea40744f15348e07fd94b7ec12ef
BLAKE2b-256 778850e2d207764255c8416dc1e0b874a7c1b905acda79f5d75e3ad116c163be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 197c0cbb9d45ec38495026218ccedb2fb2ab256e0de8cfaadec022cb0e06d82d
MD5 eef507b4e673674c4551e685e42f37c7
BLAKE2b-256 ffce58ce04ba5569b0e3646a1b97ffcd057f14e53a5ebf7208fa52828c388e97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6631c25e29a9abe5548d552737049d4981b97bb6a8c1edf4ffe453c440be738b
MD5 d5641388012ad31c81da5239d7b7ec08
BLAKE2b-256 5bcd7df23a28d2f40553b9849151968b4117913cf33a392ac63515511d439479

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5af504068bb3766987af148ea09802003241a90a9c43854f76f1677f601ff4ce
MD5 965b517a51201bf812e4122e0fa16e6b
BLAKE2b-256 73c8065be60afa9802107f3b0618e544d8b7f592f5d5b353cf32c99ac2acdb68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9a60a90079f36ea9321ea1676f420206793dc8db32b8a19b497f804f58802d97
MD5 ae50f3dc322e644563a18127c98c8c42
BLAKE2b-256 4c16d8e7454341db32608a5665dc40e981ec23b7884f13d31d1128172d91b3b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5baf4751cad74aded167697764780db60ac7563440fa68bc25abd8601cdf4853
MD5 f209b303aa2db5c7c9b5cb431d846a67
BLAKE2b-256 e946ebf0f5778f87f886d028a861a5b5e4e2c83cfc8a0f3d83b9f56d50dfc283

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9e72eb56a1e573081005c958b5f05851881faf743b75a37a17b93ffbcf62c700
MD5 9fc8ec5dcc0373664ede45d093b6ab0e
BLAKE2b-256 2668f81f04b6ab82d64c8dad2afbe24f09cfcdb053e5622373c150bb84ab91c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcf6cb46ab125cb23e9d1f7166592115c6ccfcac3dc752cc0e3d9e6cd79172b0
MD5 6281db2ffa91d27bd768a5ce17527035
BLAKE2b-256 8bbfb8029ae474883e85c19eadd6c2b70cebbe65f8618b06ea44eb41fbc3d449

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 523ae0fe5473086a6d404dc9a44fd1d1abf10efa9bd62728fec95eb2ed39f36a
MD5 382779225dc1a0150df1bb13394b0131
BLAKE2b-256 5d1e52e6e030725646ccbf48605bccc0077daf0ebb7dc881e4648d2de2a35f7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bed5226de4ffa38bd9cfe61e28a171aa2f4bdcd323e760499f42bbc500e7b63
MD5 d19f8c100a4ee6ae568f21d36465bfc2
BLAKE2b-256 aea341141939f80580837520b380774bd16528e1d99233831aa4773353b2d355

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55e8c34290114c136e536353e5b751f1f5cc8323a78b274252eac8314d1fe0a1
MD5 4b89f38e7b46281267b6a315c7723a26
BLAKE2b-256 40c5cf55e72de937b6a8af1f3ee88c2ed065dec00a6431312c20331bbb23ef5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 884884ddb32d59f1861f252ba4f7bfcf7243379bfc4e0e57de73034736182460
MD5 8fa5b42c6ff7ee20422e06c073f3a185
BLAKE2b-256 d16150dcda7e413958bae017d0bfeb55997b8c4c7d2ea93332f96eb6cf7f4f18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7161277bbbe6b356f63dcc5e36133f0f3ef9a748619091c0b3534a691e0ed181
MD5 4f6fd2ee8e526c098e294e1885386e18
BLAKE2b-256 f8a97774932e3ffdd0b5e412369f507fdaa9f4405c88cbc9d6c503e7af8709e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1f6a804f3e6656891ebe8a031432f0568aa51211501f26ba85ab1e04b946cf5
MD5 ebfe1f16a78cdf1b110de204e52b7979
BLAKE2b-256 56436704fd0eb391ea622b9d50e5a7284450db5f8035f5d8c55cfbbed1f69133

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c67c8a45330462acffa61b85eda0e60f26070be96bcd6ac567e2da7dede79dd
MD5 edf74205469abde139cba6c33201cf04
BLAKE2b-256 f7edeee4578ba051697fca606300d55b7f25dfce567ccd8b3dcfd67b83a310b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d267692d00e9ae101b430124a6379d3d9f91f5459d4311f9017d3e79ac6659e
MD5 36e5951e3f685daed72525fde934375f
BLAKE2b-256 98b077a471e212cac355165c2edb99469be282bd481a8213a9b235c4eb4e599c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.4-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c72326479aa985451561cf3098ca507919ba717231ea9a31baa7be099ec48fb
MD5 b0f0d72bedf8d79854469148e08e8489
BLAKE2b-256 2bf74c424a69bd3b67599fb52cf5b4cfca3df4d8b4e1a17141bd65534697646a

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