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.7.tar.gz (922.8 kB view details)

Uploaded Source

Built Distributions

rapidfuzz-2.0.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.0.7-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.0.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rapidfuzz-2.0.7-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

rapidfuzz-2.0.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.7-cp310-cp310-win_amd64.whl (974.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

rapidfuzz-2.0.7-cp310-cp310-win32.whl (951.7 kB view details)

Uploaded CPython 3.10 Windows x86

rapidfuzz-2.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

rapidfuzz-2.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.7-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rapidfuzz-2.0.7-cp310-cp310-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

rapidfuzz-2.0.7-cp310-cp310-macosx_10_9_universal2.whl (2.5 MB view details)

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

rapidfuzz-2.0.7-cp39-cp39-win_amd64.whl (975.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-2.0.7-cp39-cp39-win32.whl (953.5 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-2.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.0.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

rapidfuzz-2.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.7-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rapidfuzz-2.0.7-cp39-cp39-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-2.0.7-cp39-cp39-macosx_10_9_universal2.whl (2.5 MB view details)

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

rapidfuzz-2.0.7-cp38-cp38-win_amd64.whl (976.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-2.0.7-cp38-cp38-win32.whl (953.3 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-2.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rapidfuzz-2.0.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

rapidfuzz-2.0.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.7-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rapidfuzz-2.0.7-cp38-cp38-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-2.0.7-cp38-cp38-macosx_10_9_universal2.whl (2.5 MB view details)

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

rapidfuzz-2.0.7-cp37-cp37m-win_amd64.whl (976.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-2.0.7-cp37-cp37m-win32.whl (953.3 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-2.0.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

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

rapidfuzz-2.0.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

rapidfuzz-2.0.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.7-cp37-cp37m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-2.0.7-cp36-cp36m-win_amd64.whl (965.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-2.0.7-cp36-cp36m-win32.whl (941.9 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-2.0.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

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

rapidfuzz-2.0.7-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

rapidfuzz-2.0.7-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

rapidfuzz-2.0.7-cp36-cp36m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7.tar.gz
  • Upload date:
  • Size: 922.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7.tar.gz
Algorithm Hash digest
SHA256 93bf42784fd74ebf1a8e89ca1596e9bea7f3ac4a61b825ecc6eb2d9893ad6844
MD5 d040b554345ef1514093775927491cc8
BLAKE2b-256 74e415d8451ac7090d1667dadab04e69a74691ae2989d995cf9bac7b053a8c85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c47fda63c0d9d8275b319cdc226f96b3f1c16a395409442bff566b6de6b7cac9
MD5 b0e5ed28a1f2d283ad7758f8ac4ce3de
BLAKE2b-256 2c4f9cc493848ed9f7d7dbed7c93ded7cf6586bda269271b9aa1401a54a1d4fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.1 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1e70ec13c00a9f28cce76a29eb5c4e6aeb5dadb9ddb35b74dfe05d503c09a4a
MD5 ad865c03b225c15c7a0870a7c32f6c70
BLAKE2b-256 f5caf7c16e29eca9b17dcb623bf80b53424e8c972b437f587bf75ed1fc4209d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07ccd298a24de2dadead47e75f23ff747ed3ee551964a8401ccae31a577cebb1
MD5 988558cc356f8776d5cfe10e92cfbf90
BLAKE2b-256 f7f7cbc87f003f03df0e777dfb88f26b8b13b006aa24599c3d7073e1f9f5c1cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c67d650e25a7c281127865cc50c3588d5319200c8a11837df51ab3eead7cf066
MD5 fe0c053ef56ada9eee776375a12c2ff6
BLAKE2b-256 bf1611867e4dd6d968589f8ed33e412d3f7f2dad5635f95e6465d066ac671119

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.1 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad5282cf9921c6dbfe1c58e5af05c3014eabc20afd8fafcc0e6a56e9263875a0
MD5 c7232d3111a8f852fd6009a8a755eab4
BLAKE2b-256 29d816af023c71fcfa5c9c9a188b2b847e232ff2dbd59a988df2f153c3f5f7fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be8121175e7096062a312b73823385389635c4dec50a9e0496b29c4ba0b50362
MD5 391dcaa5d04b9572e041036f9b5f4c96
BLAKE2b-256 54bbec5f622abc97e706bd6b10ad228e8b517b401db37ca30dbc7dac7e94d949

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7983ed01b0ac5343bea4d737024576a86a8c68f3c8d811498eb0facf8d3bafc1
MD5 1517b2c37d0ae5613c2f7ef103de20b2
BLAKE2b-256 1df1c6657d95346d7af9c05753664d3071487de13d8b04a2f25a41ca1268c5f8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.0.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9ec9fd78d40f392cd4ce91dbb17477cd07740d0cb0b7bf44e9ab67c16ee3d5ce
MD5 0b5459e19890d6716cc28d2eb2b07059
BLAKE2b-256 216521228527685f3eb8bc769fb4094625aa56d979ad318d738c6c5c6bef52e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.6 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d44d74ace68b3ec6dee4501188c74f124da8c940877989baf9f672d51368e171
MD5 f16ddb39c815d10c1cf84a829fba32fd
BLAKE2b-256 07519ae303c66f359ad070e4e4311d2a27d7b831c9fd814436128eed7ea640d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.3 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 79883fcfc3e550b356d45ac2bf1af391161f9ddb64b1ed504f9a94086b824709
MD5 9fa14fbbfda69eed7f8b1a30bda8a308
BLAKE2b-256 8193321fa76652623dfee73883084365f2b91968fa9f871ea9c36015cb760b2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.4 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d06a394e475316aeddbf4bf9691aabf4825f8c1acf87b49abbb7b9dad7e555ae
MD5 c9e74d7c10ee2651f14c2aea86af54fb
BLAKE2b-256 bb3925d9dc4574115c6ecbdbb4f11541c4edbccd114a5c5fb6caf10dc0e17745

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.1 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac993b8760c5308d885c300355e2c537daf0696ebc5d30436af83818978e661c
MD5 94fdea6dd53858e2b6cf8a761c388839
BLAKE2b-256 28d14971f0537c12a971398fb7cacd7a0e234ec53003ca0420257de1dfeb3eff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ee380254d8b29d0b0f47a020e7f16375a4d97164b8071b3f94d5c684d744093
MD5 21007d6e374fe4ff35bb5902f8eb0a8b
BLAKE2b-256 841fe6b8ca5179573e7a79d83e6f20de78518d83419eacdfb770ea8fb7a212e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 2.5 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b306b4a1d42a8dfd5f3daff9a82853f1541e5c74a2ec34515a5e5cd51f3c7307
MD5 e730d9949f5ea4de42fbb640844ddd3b
BLAKE2b-256 71b0231ca95beeafbd7d0c59b5826a4bb2c4e1dc8b9fcb0967549845ca013020

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.0.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 233024373cb77dc2ef510b5fccac0429edb3294ea631ad777a7e3ff614501578
MD5 ba89638d245c5575497a95173ec03a7d
BLAKE2b-256 85e9a1b58a1a8810f48f02bfbc0021c8029de33018f07f6c1ca2b389b446c7a1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.0.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1f892f3dd0acfbc2ba0b90d72cac42dd468ac9a8f7ac2179c91c29c22a4f7960
MD5 52c4d39fa3b3e4cbdf4227309423bfc5
BLAKE2b-256 22829c3f90dd53b309eec9edff529155b9cf4419f7f7c7ae8cf45e7507e658e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.6 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46a46b8bab2ceee4877dfb281e94a43197b118d96cb04325e07540f7f9c57324
MD5 a63d36195647b65d3ee9c0783c60d4ca
BLAKE2b-256 5aacc841b21a3e2b0c1f28cc7643b1af777c9a7259b50db5511b748b65b9ee40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.3 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c42064174035f3633f4a815c38a76514875ca8531fac3f992202a41d1f338a41
MD5 b835ea3a285ffcdbbab6b13975e0bed8
BLAKE2b-256 e5a36221cea4d4c55038aeaf4f80593334913a9db362899133188491f53e1157

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.4 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a934734aa247f57c683932ae0d38653063b2d97540598b551294b40ff242bd62
MD5 e99179ec58cd7ffa23a44fb243c91c5f
BLAKE2b-256 a6a222e4fac25285d48fa89652a34ca7f0cb6b97137f97ee17fb2a5c2a873188

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.1 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 603d179205972ebb5b01e7a84ead465d08813d50401216d5cc81fc2589e2c957
MD5 4111af11e74a1164814cc31a86745093
BLAKE2b-256 beaf3546492c849ae15b02f9a043cd60a04c9c72b19c8a037066169d931ad288

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2a988b5ff46823e0d5e14b4a1cce3ef13024009115df61d1d3b7ba14678f421
MD5 38fd780cc3a25f503791aee0b124049d
BLAKE2b-256 98e8a1326d5964522d0b3ce0ec398411aa1e0f00d95c59cba78ed56b58a639ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 2.5 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a9959374974fb96d3941334f5f8caeea971ea9718279514748c53d381146c5a7
MD5 7eb3fa76fb6be9ce7d79902350f3899d
BLAKE2b-256 fbf0809777b5d845f7413cb0d89b257e884dd04f36c7f206e81c599f758a9c40

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.0.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 14234ecc57e1799e24c9dcd230bba02630c4f38ca60c0eb075452313da8e0e95
MD5 582e12ee5a26f8cd826314dd8be6c803
BLAKE2b-256 ef38c49c9bba63996e59d6bca500043ec74a2d16427d85967a5b3c39402b5829

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.0.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a95a45939cbd035c2d4779765a81485215a12fa5f1b912c2738374fad93e753d
MD5 469f8fecc41c5096abae25281c89a1ef
BLAKE2b-256 2fcbf7d837b8f1041502a6d6283cd38f3eacb567ce403ddef58c49b6ed07b97a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.6 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7f34f905a0e9fa01cf26b9208daac6523708f9439958397b21b95c6c4fe508b
MD5 fd712b8809d3789253c5ebc460c40e26
BLAKE2b-256 9f34ece63e0ea0a609995c3e81dc0be9f7bef7c7d0e4a60ecdba7ffe30bde0b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.3 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c9b344e3f69c5b69ae0c96411d3ee1dab02ec49124471e44ce2a16f6446fa6d
MD5 2bee646abda2ec23ba0b847c49521859
BLAKE2b-256 2f41ee88f145ae52a352445dcd7bd25bdd73b659ca9bedcaf70363b7df037617

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.4 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 723a48d5937e4a558fb5df553b3d0e0b3cc05de7f7a8d43a920682b796010ab5
MD5 0f3378c858f8cf6d63de126e618a49a6
BLAKE2b-256 8ec9e61ba9a225c9566fdedaa13f2b5c26e2e593ed4c7a4aea23aca7139a47b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.1 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fd757a38e14f247d929af7df6762aee2082f7a6882c85a31f17b09a450bbb5e
MD5 e3242d04ea91819e3b5d01feffe94a68
BLAKE2b-256 43ebc52261b1df19da4262f4fb0f513645c041307bf0bf92d1c7673f4cbfd7d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ac560a603d0d1b9d70cc0a376d1adf57ece4195e61351d410e0c7b0fa280cbe
MD5 c1e3fff41a53cca93d3748f8d5877ed8
BLAKE2b-256 4bf6297864398ec48f7878f1782e12a2fd79e0921bebffc27b0947cd96c51128

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 2.5 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1332fb51345e431ba39e075c3dbc222bb9770f0e73c097c7a65c8c2ea331004c
MD5 e98d4572092d9ded4b5acfef6ac6ee6b
BLAKE2b-256 b8689d3500ffc24ab54640c25745228990513dbcc918d1f2c03141b78314f595

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.0.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4044ef50f020f16f99b5979784b648b7ab90cd6bd0d275359818a2c155f9c01d
MD5 73e11a05ce43a64812bb8abd1088e561
BLAKE2b-256 4bee20b36dddff62073b6fa9fbea294ae2016adb6a9e7fa6dfd51b5eb2c95df7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.0.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 34416ee6265dfa1415e9f10c7dafe6a85296117f534f67d00021eeaa661c8d9e
MD5 5189ebd33a57313bd5a97806fd840ba8
BLAKE2b-256 fb5d51c72b388ac92d714514f9db3d6fc9d5c25f5f0df6cbc4d364bf948e0f61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.6 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42bc2cf64ebbf2a80e6fd03353679de17118a431dce358cfadc7cdb72ac9510a
MD5 267b982ec7032d50e1c757bf791fcf30
BLAKE2b-256 89dc9f4b2015aab6c8f85b50bd20c357acac792ace6e9439c9f0e90595d25630

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.3 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d9224115aae07d42b9250d8ca58d5568cab2ddd8720c551aa7de9dcec661ee86
MD5 bd084ef29931f067910f65cb5af53148
BLAKE2b-256 d5e771351adb7370bf0fccc7c84c0f241d5c3c551af9e9f60cad3e728e634721

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae15eb44e014101b208c97a253d850d6fb4a8465f3c9ee8be3508b03135ad0e7
MD5 d4e22de36a314c0b189f4c6efa37bba6
BLAKE2b-256 31024dd8fa64edaa6ba7859d61fa37719d55d79622ab4d8bfcfa71577b5d4dc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cbfc3fcbbd00edf7f917ad0d6bf46350c64a9910c14d05e1936d436170f2531d
MD5 63003c3bc5cda749d15152c226972d9e
BLAKE2b-256 054f9642a588cf151391c8ff4b8bdce797ea2cdc892de1791bda9537711fe203

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.0.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3062ea2a0481196376e364470c682d5ebc22eb5d4c114350f05f079119ea61b8
MD5 a9dc012f84dc8c73e368c39aedb75bd5
BLAKE2b-256 0dc30e94c030cdceea575ec033e136c5d5ed47faa158aa9783afaebe6d72e256

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-2.0.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8157406a1b44cd742d65c65ca8345e47fcc8642148a970626b886fb52b3abd1d
MD5 674eca03a4c7d69f2aa8d12fbd7a70c6
BLAKE2b-256 de611fdf72a5864d3016f3fd0b09a9ba61b668cc45195526a69c3bd3aaeb6222

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.6 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fe01ca2cbdb2aee6f80c1fc3a82fa69ee9ef9c44f085a725113b5d12209e05d
MD5 1b4b8825ea189d2e5e491230c8286c33
BLAKE2b-256 b118b391bf3b5034a070dd6685308458d2fa88cd8376161d706c3acac8925e85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.3 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c6a47418b86a6b8267a89f253e2b14f9aa8b4b559141b15f8c8a9769d19b109
MD5 6fdfc7131975a73513cce59615492c95
BLAKE2b-256 419a7447741d10cbd527f091ec8a70e25d096ffc80f0a2fd5364830952fa31f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.4 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 636489517bbd0786f300948f8eba59635f2fb781ecbc2ed19deba3426ee32ab6
MD5 b023b490eb8f8227d34c1d3117bf8bb8
BLAKE2b-256 e4fb7c52d79e481d77a238a9495a0e992c37220b6a8e46e1531bfec707155f06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-2.0.7-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for rapidfuzz-2.0.7-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49fd3d2a789abc30c811d6ed81db1c5f143caf5e975720bf9ab62c920253d5e9
MD5 69cea26b575b50313f5165925a29ef4f
BLAKE2b-256 2b9abb5ee9d290160919fb1a0a2f0df507d8beefd589e1705dbdbe054d283911

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