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

Uploaded Source

Built Distributions

rapidfuzz-2.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.0.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (16.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.0.3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (16.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.0.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.3-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

rapidfuzz-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (16.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

rapidfuzz-2.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.3-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rapidfuzz-2.0.3-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.3-cp310-cp310-macosx_10_9_universal2.whl (3.2 MB view details)

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

rapidfuzz-2.0.3-cp39-cp39-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

rapidfuzz-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (16.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

rapidfuzz-2.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.3-cp39-cp39-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rapidfuzz-2.0.3-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.3-cp39-cp39-macosx_10_9_universal2.whl (3.2 MB view details)

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

rapidfuzz-2.0.3-cp38-cp38-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-2.0.3-cp38-cp38-win32.whl (1.8 MB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (16.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

rapidfuzz-2.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.3-cp38-cp38-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rapidfuzz-2.0.3-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.3-cp38-cp38-macosx_10_9_universal2.whl (3.2 MB view details)

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

rapidfuzz-2.0.3-cp37-cp37m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-2.0.3-cp37-cp37m-win32.whl (1.8 MB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-2.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.0 MB view details)

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

rapidfuzz-2.0.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (16.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

rapidfuzz-2.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.3-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.3-cp36-cp36m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-2.0.3-cp36-cp36m-win32.whl (1.8 MB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-2.0.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

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

rapidfuzz-2.0.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (16.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

rapidfuzz-2.0.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.3-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.3.tar.gz.

File metadata

  • Download URL: rapidfuzz-2.0.3.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.3.tar.gz
Algorithm Hash digest
SHA256 5124fc36a10cee8dc6fb3851bf3dde1537cee70ef7053c2c46fac6058e1b7e86
MD5 adad6335bad6e8e9f171f951537c2182
BLAKE2b-256 5eae686340b341016c9a7bf41ee33d408503cc98b4e7bd4e4e1eacc493772a29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.5 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.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f08cc7aae1a730d1979d55a674fe1950ff506dadd57548433848406dce47d734
MD5 4855d01c4e569de06e3d3644ea2c2de5
BLAKE2b-256 772d128397ebdba44d818ed29f800d6fe7cc7474066c555d1f86d73aed74d31d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.3 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.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24a0c627b8814657ba4994054b4c9a5e3c6f1d6c052e637444c7bf3dec68a29f
MD5 ed47861e5357e361cb6238f04b631b27
BLAKE2b-256 ee9d92059f34cb7a194799efa3d5ab4e593107265bd4054fa07da01971774bcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.2 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.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22e4b7cc2b320c8ceda8eaad3323386dc24f93d6c773ed3b21f3605a967a6b9c
MD5 47384b1146451c27f99cd3ca6c04c320
BLAKE2b-256 e5a1f20916e3dd9fae04cf18f9d97d2deaffb16d17336e2566bb51a34180a5cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.5 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.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d924111bc97f139a30dbcc014507f9a35dc55a7d1b93c0e43ad83b9c17d01c15
MD5 a876cb1854157509a4e4b4af243a0a55
BLAKE2b-256 4e6221fd288515f9fe52ba80e9d1e87c0515f8c6ab0fc8e2410804026a8a9e81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.3 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.3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 905559bc2c894dd3bbe39e9daf9548da690f7fcbec2b69b1329aef92c8a9f063
MD5 8a0330dced4208fc58f7011c16c7feb4
BLAKE2b-256 e73449e8cbc9bc584dd07c0913d0b6c2c483db56afe35853679116fc549b641f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.2 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.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c6b249e7079134e54c4b38c4df9b47662eed91ff1a494363e5d5e0b85a13cb9
MD5 11512649cb610cd053af59d14528b404
BLAKE2b-256 feefcef0ce5e7572ee60099ea0140353f50c471b95c2ae3f6bf5728c0b73687a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.8 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8da363703139f7f791940ff9c185a476d4fad0fe2bae53053f441ffe33b0d97d
MD5 7477889e0c9a72eae41b9e65915b5b60
BLAKE2b-256 ec349f3131fd758d97a7ad6e31af953e387081136b49388d59b1041f1524d0fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2edf1d505f726b83279c78b6ee6de56698646f011d32dce85e9ff971b14fd268
MD5 e845aa6d6ba01151a69e96ad925439ac
BLAKE2b-256 dce960d1bc01a2d7fb3eb3f693093bd973867554d177e21ce85a8d18666489ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 17.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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9508223842f306e4b58753bd90ac5ef6d731be4b68b9aad670718c9daaa2706
MD5 703c90599be2c03f33005267688fa23d
BLAKE2b-256 4cd796e6c8ecac6adf0b9419f2f077d1d8a5515ba1c0d11e2ef4693602c969b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.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.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a18f0c197205a2dde2b37bf8aa2925062c8b0a44b1bc6b32544d2bfd2b10fb0c
MD5 ad1bfa74220d661bb93c494d0d2d9a47
BLAKE2b-256 8e721e329952bda11ead3ba1708b0fe4fe16b24d56998f7c5e2704d4ed4fa828

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.8 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.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d7ee8669cffae55e0dcc6b92f1fa00486e6663bbd82c8103c3807e87a169c9c
MD5 43d6dc8c97e6b5badafbd60446a2d406
BLAKE2b-256 2a49349d5a669dd7f755687f789c6fb303bc492590e6b7f3b7475cf7b2e47f29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.6 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.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0684f284b38789f9057c7807e94ecd13106f7c641c814749b8199853587fa3d
MD5 b6804439503ecaa57c9ecd112fc7868e
BLAKE2b-256 840c9142396a11f41ef4f7da23a99d6b8da45feb3e330ce5dd480d31960fa9a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-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.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5724cc794922d9fee6e4e88d7235ee126b7e10da9f7508a5d319b9f3bac8297
MD5 dbc8e72827f48c3418c039ef6a6e7e4c
BLAKE2b-256 4edddf6317e970080711418109742160a4ef7f89294cd14fcc5c161ce267a7e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 3.2 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.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f09be7501370359e2ed0c443b672ef9313ef4729cce6d27032ecc3189c6a1e92
MD5 339bfe92c6c197d33f7522591d655e7b
BLAKE2b-256 fa54b3b3edc15e487b7794267814250f598a5255ace6a25fb353dcd0ec8b436e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.8 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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 48f6a3ddfccfed9c0c12e47c2afc7becfa9a715142962818319c6b6345a6ddad
MD5 a00e288e9d0009fb5632ad7b7460ef65
BLAKE2b-256 0fa2e08700b31afb42333d2e0bbbdf3b9f5ea6c7cb8103b5e822eda73d4aa2cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 de7c56a03ae9c8d62ce199fcdca6d94189184f1172c4285d20f4dc2943c2ce49
MD5 d77a2b656c9e4420557456c2c9916ea8
BLAKE2b-256 fb619615be394e9d78e41daf74ce5e9e9f336d039139fb4da0b4f9c838f5c063

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 17.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.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2763a3d8c9995e40174d5492a32afb237f135148d642f786a9f2f79f75cfa044
MD5 b37d7791992b780d61abf961caf66963
BLAKE2b-256 fbd1d0912cdf0ccb4a5cfcc091835efdfba6fb2a1f4a42b70edf3338cac8fcdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.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.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a6659c85a124f7dbf6928c3dd1e47fcc9ba6cd8c739684dda084bcc40a50a83
MD5 a24cb9a831ec47f1dee392f6af423301
BLAKE2b-256 89876f6c63b37e44336a1bc4dc9abd8aecb417e4c3cd237e97981a002671b34d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.8 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.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e67ea7891d00c10a5c91767f68e0ba6a5c445b6efd269a38a2a7d17b8fa6246e
MD5 42245abeba035da144c3cdda21fc14b2
BLAKE2b-256 f6f8abe4a98892651eb699a3b9d35f7863cd37d0824db50c84bf12057721c130

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.6 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.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31b0a6969e8c573b893655e75f13f8e881b793a5b5dd2a478c8402dcddd6efd8
MD5 5faf4c0a796624b3e9813ace0c150c32
BLAKE2b-256 28f2fca06da36b2d78d9b8b9577a8d738ba010c9b323fbe656a3e65269332db1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-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.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af4fb8d24255b944185a99f2cd96bd3accfc368e60e78d57e1defdc3f1a0fde9
MD5 ab8cfc5900e8fdeb655285c90a6ad730
BLAKE2b-256 77ec638d66c532e1ba0032d89db2ad88f8341756ce4e597b6d1368d24e01beae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 3.2 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.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 63a573f4fe30038f63be76e8c6c4d9a0a8dc12f8746deb38a96550f143bcaf40
MD5 a0e6dbee57a16c94e029ae0013e10d42
BLAKE2b-256 df74640042e56a28c3c97c166d31a4f78cb0b516060fa83ee9c7ccf188d29684

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.8 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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 df737c1273efad5bee6d3d8374eadb65076e120f168a8750aedd2ed09f16d4f2
MD5 2591f969b98d1fc64e9020d938166e49
BLAKE2b-256 45fb9e649e8436a34f189fac102e71bd9b7ece4e0dbbb4fae49a819ebccdfa38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.8 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.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f5c2aa6237575a93431d3b6bdd8a324e9c9e5450c37203b3e2e6afec28a77e7e
MD5 d43f86d3ff3219402d64edcb92c19c6c
BLAKE2b-256 3489c6d3feea9b9c6cf04180db5a894f5b9401a5af4636b908a131608c647c20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 17.2 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.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6749ecf2025c35ff4d2bfc38d89039a21e34c81ac251d14c0f4416f8c63c7313
MD5 a32b24d2f24343f25f493f5bd56c9da3
BLAKE2b-256 dd59d2ec6d55721977da140ba18858eaaa427c7530ea7df65330463ca1958ee4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.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.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9eb2ee7dd9b481b53dc01d1dd3dad63b9a7135bbe7ef352c4c8f254c4e22cd57
MD5 c094487d0f634f3a02113d79d03c7b90
BLAKE2b-256 51888eec162fd4d59b5ed112fe9c76762e122c2a90bf29bd319f3f8815f42540

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.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.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 481fba59298ad09e3e84fddf80c383f3b5466da739eb51afe0b855486e486f51
MD5 b798b993ff1c415f4ad8191df9fc0933
BLAKE2b-256 405f5b4105b5583117fc6f1d74564bc3d94cbcaa8f402c602a9c39663e69654f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.6 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.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ff9a898099c45389168979df2ab89e853de4dcf32ca40a1101c1f87e571f287
MD5 470eb13891cf9e3fed5193d7ca98214c
BLAKE2b-256 a09198048bded917b080041cb41e85e61113f4377cfb994cfe10caadd7be36a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-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.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3323f3d188bfd26eba06719fde5ff72bf49cc01c017c0752218401a934dd2257
MD5 b7bb63cdc54c246e84e23ff7bfa5bcd8
BLAKE2b-256 8c2cff9f0198beda3447dd5773401523f1d3ed39793855eea034844de48b2ff0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 3.2 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.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 30f0da07f2e059cf433a7120612665e9de8095bca9ebe9b1d0491f4fc2797621
MD5 b38ef586772de523ff4574fdf333047b
BLAKE2b-256 41642492cbac4e015f8bfc0ed8c03cc24014aef435f58acf420af6bb279b47e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.8 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.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c021508493d353152945da0826e2d546f221b26e25b24d1f36df92d9e25a0fb9
MD5 c946f7eb21c62188f3a0dd6c1af86589
BLAKE2b-256 ef0543cbfc45ccf9d1810ddb34cd2ec088f18de9b021007cdfb08bf0e4b5b9ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.8 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.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 83d2ab1d9832e3606f96b506fa1c27785a2a754ed6505c2b4d2d7f9175b45d8c
MD5 bcbf5f022cba0ae6900d0f06426b04fb
BLAKE2b-256 8cb758a05e10666aaec049df2423c3a74ca33c7a9403cac504c0aaa9ce97a97c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 17.0 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.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84ce3737c950137b4b6ba970b1f39ad90b1daf7b47527ad18fb19803255edc0f
MD5 858f0de0f7f7e1ad2e2986e88c03a0df
BLAKE2b-256 147e5c623ba201439456db3860cbb3d68baf3926db52ea233e9f36cddd81a4d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.8 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.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e83a150452f2d41b3c6a0e7ad1774b46f7411e063af1b2eb9f0723dec4b8a7b
MD5 d8cf0cbe723b34bd9113b3c123cd1869
BLAKE2b-256 cb8dc2e79d12260f3407c1b8a0830b14add80883b12d3bf431ab42216e7ccfc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.7 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.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1505a14f73bd7df78f4f16189a8e64ba3f7da1190e0054251a29da8c50797c2
MD5 c00a0eb5c272727e10568235f31201e8
BLAKE2b-256 6db45190d2c84dd5c185493b7d9540776867ac4981270a7b468510ed5f42ee24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-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.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af7f0202d8d2be781cc7b7ff15f80b8b079c7db0bb258eedf7ff4491e857d4b1
MD5 d740193b1204bf98f6b2617da223f15a
BLAKE2b-256 10fc1d60c2d9b0aec088af858fb551c37ce361820f7b5d2d2dc4b25595c619f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.8 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.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2e7a3ac4b7d6f8d7a8bf07e254acb9c15a5358d50076150d5fa4ff0c687a62be
MD5 1574acd1a897dbe7b331684d2fcd9378
BLAKE2b-256 2b6ec68e229678431f1506005207a99a7a5253982562726dcb230184cabf0fcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.8 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.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 082a7d1f8594a909482f551810cc4424042ccc02af59a500b6081e44c530d05e
MD5 710d5547105853143711d7ca519c17e2
BLAKE2b-256 2e08e7260dd00b41a08a643cbfa50fa6ccac29bfc61e89e561bae9b58024f4ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.9 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.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb8262e637fd48935abf1e854fb9bcf4e78fe14b22d242213037b3084d7817c0
MD5 eca40d0eac4a43eb5fddf966181a8597
BLAKE2b-256 9c2cb1bff4991970af4f6a25473c818daa09ce9e2086a84041871dff969c3f7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.7 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.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3c23ff78ef77d668ff1b9d832b5ae23c0d6a5d6ef18bf2d458d807a4fcfb70a
MD5 715af79fba6ed62bb6973318da7d9c89
BLAKE2b-256 a15aca300c982a7dad08255b8d1006e1f17381683c758bf72804a41d10e94ee2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.5 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.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 262af0cbfc335f959e4eafdbc8c72e9dd506b0d6e5726a505553486c620e3f0a
MD5 f42d68231c6965c6e509e64c0a9022c9
BLAKE2b-256 6f0bac9393c12d51f794426900783ff5c112ce6909eefd0152565fc4242ef472

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.3-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.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 744304eaebf649c916f198f45b7d3ee57cbd8b15d474025cf6dba592ccda732a
MD5 ff7a103bc84e3401f808864fdff460e6
BLAKE2b-256 dd3a5db2cb7a7628d04ce3e202ac13b26627be51e35d0364a666c0112acb980a

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