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
Gitter chat 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 two 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 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. More details on these performance improvements in form of benchmarks can be found here

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

scorer Benchmark

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.

extractOne Benchmark

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

Uploaded Source

Built Distributions

rapidfuzz-1.3.3-pp37-pypy37_pp73-win32.whl (301.6 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.3.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl (683.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (477.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.3.3-pp36-pypy36_pp73-win32.whl (301.6 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.3.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl (683.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.3.3-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (477.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.3.3-cp39-cp39-win_amd64.whl (402.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-1.3.3-cp39-cp39-win32.whl (312.8 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-1.3.3-cp39-cp39-manylinux2014_s390x.whl (679.0 kB view details)

Uploaded CPython 3.9

rapidfuzz-1.3.3-cp39-cp39-manylinux2014_ppc64le.whl (685.2 kB view details)

Uploaded CPython 3.9

rapidfuzz-1.3.3-cp39-cp39-manylinux2014_aarch64.whl (604.7 kB view details)

Uploaded CPython 3.9

rapidfuzz-1.3.3-cp39-cp39-manylinux2010_x86_64.whl (699.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.3.3-cp39-cp39-manylinux2010_i686.whl (718.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-1.3.3-cp39-cp39-manylinux1_x86_64.whl (699.8 kB view details)

Uploaded CPython 3.9

rapidfuzz-1.3.3-cp39-cp39-manylinux1_i686.whl (718.7 kB view details)

Uploaded CPython 3.9

rapidfuzz-1.3.3-cp39-cp39-macosx_11_0_arm64.whl (398.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rapidfuzz-1.3.3-cp39-cp39-macosx_10_9_x86_64.whl (504.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-1.3.3-cp39-cp39-macosx_10_9_universal2.whl (898.7 kB view details)

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

rapidfuzz-1.3.3-cp38-cp38-win_amd64.whl (403.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-1.3.3-cp38-cp38-win32.whl (312.8 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-1.3.3-cp38-cp38-manylinux2014_s390x.whl (678.0 kB view details)

Uploaded CPython 3.8

rapidfuzz-1.3.3-cp38-cp38-manylinux2014_ppc64le.whl (685.5 kB view details)

Uploaded CPython 3.8

rapidfuzz-1.3.3-cp38-cp38-manylinux2014_aarch64.whl (606.0 kB view details)

Uploaded CPython 3.8

rapidfuzz-1.3.3-cp38-cp38-manylinux2010_x86_64.whl (699.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.3.3-cp38-cp38-manylinux2010_i686.whl (718.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-1.3.3-cp38-cp38-manylinux1_x86_64.whl (699.1 kB view details)

Uploaded CPython 3.8

rapidfuzz-1.3.3-cp38-cp38-manylinux1_i686.whl (718.5 kB view details)

Uploaded CPython 3.8

rapidfuzz-1.3.3-cp38-cp38-macosx_10_9_x86_64.whl (504.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-1.3.3-cp37-cp37m-win_amd64.whl (405.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-1.3.3-cp37-cp37m-win32.whl (316.4 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-1.3.3-cp37-cp37m-manylinux2014_s390x.whl (679.7 kB view details)

Uploaded CPython 3.7m

rapidfuzz-1.3.3-cp37-cp37m-manylinux2014_ppc64le.whl (689.0 kB view details)

Uploaded CPython 3.7m

rapidfuzz-1.3.3-cp37-cp37m-manylinux2014_aarch64.whl (610.8 kB view details)

Uploaded CPython 3.7m

rapidfuzz-1.3.3-cp37-cp37m-manylinux2010_x86_64.whl (705.8 kB view details)

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

rapidfuzz-1.3.3-cp37-cp37m-manylinux2010_i686.whl (721.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-1.3.3-cp37-cp37m-manylinux1_x86_64.whl (705.8 kB view details)

Uploaded CPython 3.7m

rapidfuzz-1.3.3-cp37-cp37m-manylinux1_i686.whl (721.7 kB view details)

Uploaded CPython 3.7m

rapidfuzz-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl (506.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-1.3.3-cp36-cp36m-win_amd64.whl (400.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-1.3.3-cp36-cp36m-win32.whl (311.0 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-1.3.3-cp36-cp36m-manylinux2014_s390x.whl (665.7 kB view details)

Uploaded CPython 3.6m

rapidfuzz-1.3.3-cp36-cp36m-manylinux2014_ppc64le.whl (674.4 kB view details)

Uploaded CPython 3.6m

rapidfuzz-1.3.3-cp36-cp36m-manylinux2014_aarch64.whl (594.8 kB view details)

Uploaded CPython 3.6m

rapidfuzz-1.3.3-cp36-cp36m-manylinux2010_x86_64.whl (691.7 kB view details)

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

rapidfuzz-1.3.3-cp36-cp36m-manylinux2010_i686.whl (709.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-1.3.3-cp36-cp36m-manylinux1_x86_64.whl (691.7 kB view details)

Uploaded CPython 3.6m

rapidfuzz-1.3.3-cp36-cp36m-manylinux1_i686.whl (709.9 kB view details)

Uploaded CPython 3.6m

rapidfuzz-1.3.3-cp36-cp36m-macosx_10_9_x86_64.whl (500.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-1.3.3-cp35-cp35m-win_amd64.whl (397.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-1.3.3-cp35-cp35m-win32.whl (308.4 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-1.3.3-cp35-cp35m-manylinux2014_s390x.whl (663.1 kB view details)

Uploaded CPython 3.5m

rapidfuzz-1.3.3-cp35-cp35m-manylinux2014_ppc64le.whl (670.0 kB view details)

Uploaded CPython 3.5m

rapidfuzz-1.3.3-cp35-cp35m-manylinux2014_aarch64.whl (592.1 kB view details)

Uploaded CPython 3.5m

rapidfuzz-1.3.3-cp35-cp35m-manylinux2010_x86_64.whl (688.7 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

rapidfuzz-1.3.3-cp35-cp35m-manylinux2010_i686.whl (705.1 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-1.3.3-cp35-cp35m-manylinux1_x86_64.whl (688.7 kB view details)

Uploaded CPython 3.5m

rapidfuzz-1.3.3-cp35-cp35m-manylinux1_i686.whl (705.1 kB view details)

Uploaded CPython 3.5m

rapidfuzz-1.3.3-cp35-cp35m-macosx_10_9_x86_64.whl (488.9 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3.tar.gz
  • Upload date:
  • Size: 272.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3.tar.gz
Algorithm Hash digest
SHA256 f1031b221922e1dbc1b28d345ff9ef92ef243eb29a2eb8b4237cc81a1d80028e
MD5 c48899a68db927f42cd734d8a40fa5af
BLAKE2b-256 7c84e7a88955e53663ec95f58cf1057cc114a4b2e022e65c0633a6fcab0231ba

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 301.6 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 b0338a3ba94692af9b28af92794e07b727aabc10bee869190822258c786b6d04
MD5 e9dc5bad0b81b0237d4d8d01c4953a1d
BLAKE2b-256 5f2b79ec85a47731820c24e5dfb916faf0127b2a191a06b6cd77e821a6382db4

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 683.8 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9c1660b1265565062e05199717bec69fe5ffd82663ba711a09c3f91a52615012
MD5 baa314e9a7f5d7344e37bc76059705e2
BLAKE2b-256 6767fb2a2108b966110e8d3db131b1290bea318f3a2a672a39525ad7cfeff8b1

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 683.8 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 77e677ee2d3cd8c7544a9b7d685fd4756d53aeb02f6c792ce5bc9a6b332ddc12
MD5 49b60724f45db2c7a0d07c167602b930
BLAKE2b-256 25c82023afb3f6eec67489cacc22d6d77d0668c804a78ee9ab93434deaf4a458

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 477.2 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6e47fdf149adccdacf89ee7fee78bdc0c6e6b441c9506e604563e380261eab5
MD5 973b9d34b7ef67c6168812d7ad86dad7
BLAKE2b-256 8b831bd7c03c79e72dbb5c1e4e49c0a5795fba152fa716f72775bd8d0f081e1c

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 301.6 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 1f87eaac94b9996165bed23a55e08eecf29f4112722ecdcdff344d2e5653fa97
MD5 2661faf5e3ce12bf681b0972c9c722d7
BLAKE2b-256 2b9595f1d7b6533eda9c0d3ea6c049c5d9887b04d524957ce66108516c2c1c15

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 683.8 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 114a0302ba51ff28c34c06e414e325a33bf70b0f4cc78d558ad68762d3445d9a
MD5 ea5963f38624f5a445c37e576127ae54
BLAKE2b-256 e786284557bb5618c784fcd237ecce6af94d512b6ac2e93e459ed51d308a55a3

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 683.8 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f34fd9cfaeeec0e2bd0e8e4d9f851944a271288dcb89cb2d07a2872b658effbc
MD5 f6e2c6ccb572352f0c603bda1197ce7e
BLAKE2b-256 829f49ccc7b006cb34abc21bbaacfb2f60500711a754c4c7039d2628e0805bfc

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 477.2 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c92d418ad699a82d613c3092822b9a23a34eb04bdd82ed67c7fb354483281f7
MD5 6737b784c8c81adbe7ddafc8dbe7b66a
BLAKE2b-256 7154335e1c1ae9f51cfdae9163a5a296da198448d3480baeef5b38dc31af0f6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 402.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 79f2447a46393efab9913c9bd95a312d47f76e56f354d7340366c0e1de405669
MD5 9bd130be5cf4efbde17ffa19b7974ae5
BLAKE2b-256 e453e360424b5ad393ecc8db0a3092c5dfb58a19bc0678a9b1cdbaa13b5161cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 312.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 51313fe139622f4964cc5c493557215ad4307f8aa48480cd0dfd6ac142902f32
MD5 c8c6629b9926aa7855d748f8e3f3581b
BLAKE2b-256 21a221d9559ebac9d04d91840d150c28676bc6d760608e071f1189a0391f775b

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp39-cp39-manylinux2014_s390x.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 679.0 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f15e99abc09bb1fd9053d51f6d1e867324ac19d319e46d3e6592c56d101dce45
MD5 34b7b57ebe9a0b1238eb175144e5d051
BLAKE2b-256 1a375bc68eb4593b0f32d5792b620f65a3d738fc2350cfe5fb41aa3ee01dab3f

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 685.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a8601b03241008dbfbdc14e1ccc224c0b1def53a8dff9132d1bd5ed5fda0a36
MD5 df83f79bc7d88bfdaac50015803bbd6b
BLAKE2b-256 8e11ac45d2a75d77c5d0cac16162990ea7d48d027136f91abab39796b02e68ed

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 604.7 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2bbe9b724c6d14cf7967ed0bf388f2ddea2ebf4d0702481e49f1ed62b7c1446
MD5 f5bb4f325b51e102fcc05a692c352469
BLAKE2b-256 82a831d358178eba92e9428c047dd38f78ef14431d471518943aabd06ece3ac1

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 699.8 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7875b16857de0459ce348b29d31a11158c4e5f66179c17ecffbbd8a8a27ea105
MD5 060bdfbe9b9fe0a2c714f17651d49d76
BLAKE2b-256 a725ba6122371c35d504225615347e9ea7d5f510b5be2326dea0c1622929af0e

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 718.7 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f4dc68f5fa2ad04eabe77e434829c4aaf389a0d5c59e064fb1847c849eacb385
MD5 3948ad5825b1478489e6fd49ad61b4dd
BLAKE2b-256 fcd0108b991680eb30a4a829b25a99543a3f1a8dba1ebcee77517bd87a4054c9

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 699.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dbb7b9ce1df49136b842b2531b036f18b153ae2457689b7b9629e166d1bb6f87
MD5 737c02540c267b99365854a11249ead0
BLAKE2b-256 d37c422494e2d3adfb3d25c2de12cccba7fe9199626af8aa01bb7d59a0c2b99b

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 718.7 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5b1ad43567f404193c19c55dbef9014f6ddb3fdfbd65759584464ec5be665e22
MD5 08d9572148699919de68369246a50cc5
BLAKE2b-256 0e225684ece9fe876c836a59398cf54ef3a4ff144238669d891afe2afe0f94f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 398.9 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb117fee77130e132790a090d2692e069b27a7e7c59db43f0f0c8ff61385fcea
MD5 af89f915f44b1bbcd6ec3dd99232a335
BLAKE2b-256 b403c7beeb128c173a352ed357b6d909a595e0d06149d323bae0a8f84d108beb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 504.4 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 17e4f10457aa5fba8374b94cd192740c3c07abd59e38c4f8dc0caf3e036a5e47
MD5 3fdc4a729cf552095ed66d2d7251f5c9
BLAKE2b-256 61d0db14b32313a983d93eb527061fa78acecf2df76babfbe30b3a429984089a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 898.7 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 384d21eaa006a64609ffc4dc19490895a182bdf9ceff7c3fef13ef11a64be925
MD5 ea4e487f3ca00eb94769d90e3ef97f9b
BLAKE2b-256 a6c672d1a4e68993b21552b1eb29470a53e866737b97bc94a0056644a90bda9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 403.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 71d2ddd7ca64884948a2f548a37cf8cd8301164cfef02a22da0582e6836b162f
MD5 608e50a47a1a3ee67a46587d760fea89
BLAKE2b-256 743aed0b09d2c73640ebca55c7df985b14ef413e3760677284f1ee051eb8423b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 312.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c7f5e4d9405b0a4aad89b8020e9f13f039c43af1814159bfaa6627eac6626134
MD5 521e358362614d6bcef2dce0a1f6962d
BLAKE2b-256 8d89f86ddf01a245be3ca2bba33ba545a28e2543d6d5268e00ea86d14b29819c

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp38-cp38-manylinux2014_s390x.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 678.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6354330ecff8ebb7589d80fbaf0b8a1859a97a5551c228115ba84a4a6ac216ea
MD5 afc4051384b1fcd56aedf9e7872ef65b
BLAKE2b-256 565b09c575092bcb1cf8c133fa4d872618dbb355d9c4b2009045715a088058d1

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 685.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05f3be2df342e8cfa25cc3918b52cd7fb2613452f26cae49610aa92ed5bc5046
MD5 481edadee5b58e6411c647fdd6b89175
BLAKE2b-256 70b9f78e194642d0aae3f07f7ee5b1899b31932498e271ff4784e88d8d4a100a

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 606.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d62e55a9608856f8bee81f1eda87652d9776546f5484f8e5fbf974ab1095dd84
MD5 da048381e4c8a9abb68a24cbb99ff879
BLAKE2b-256 7a6f3b5ba24ac45fd24acfd56bf6962acb80bf09d0d39d9d0a7c3a103b139e96

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 699.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e6964c16a76954f972597a42c58cf25c35146694757afa572a047e7715d6c807
MD5 fc9d7475b056774689fdfdd7ed1aae43
BLAKE2b-256 d77ce2dbf4b60b67ab630dc9f24788b024ffe2a5f82a7f3845d83fcbaa0d337f

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 718.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ab302a296b42c4eceb3accb0c67fb5bc1e4624a755a3e740213b1467e0b94e39
MD5 709c93a62ed0536715300892e4b3da45
BLAKE2b-256 0dd165171245cebe17fd780cc9bcd7b683c07cc621430c8487e8b065825e4c55

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 699.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6688e8428864981bbaa06dbe52f68acfcbef094bdd26c8a63de8bf6b0e1e9d4c
MD5 68b3a91ec5fe574da4f35120384689d2
BLAKE2b-256 4e84b1942b3bf4fb822af9cf9ca72d625745f5dbbfb90a3c48b334b00a1e9afb

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 718.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb1af7d9b1dab63a756230940e403ae77250768c69d6be77daaa25776dc9ec88
MD5 a34fadb4ed4a56eea624e9b0c1f0f62a
BLAKE2b-256 3e059ae3795a37eef23c57b12ca77b9a7c4b7f3f59259fac2e3c009ffb211a5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 504.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a9e6517034a3e1d937fc1b7629c3eb7f66d4a92702b5dfc478e30eefd870a18
MD5 7a98864ed377ddcf7d44e2b15eb21d97
BLAKE2b-256 fe65b39c0bb5a114ad4fa5e36285d0d636bad9eac19683e2325cd1f5ab28ae4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 405.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9af31a72a8b4bebe8fe1a1e4e54fcd1c0126f8251015533854d3e1020f911a52
MD5 eb54e2e279b95154e1c49274c253302e
BLAKE2b-256 a539627485ed10cc91505879e301400bc67f79af0722e818b209d99fb7f93b25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 316.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b4e5aac20b1582bb4720562aec364775ee5b2752a94082d359be06713be33efe
MD5 6454c110dcd2c97ba2e9aee4a574a978
BLAKE2b-256 d160823b7ed25c47a8959d19f17a5703b00acc39c29badb9a22a269ea954135d

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp37-cp37m-manylinux2014_s390x.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 679.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1f3b4ec5bf7520355dea7acc25fcca1ef67f50f4d86c7f79127a0e8be286337
MD5 2a2dee9ce57e19c3da3ee7a148a9193a
BLAKE2b-256 04bfd3cf3b2e252551bc3defed17345d43bd495501f52f7384b0e40f9dbe8b3d

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 689.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc06bb4ac3bd60bd76f18db20f87c02af781aa0f29b955682114e889ea948dbb
MD5 e82274bd75df673937cb6710b41f9109
BLAKE2b-256 cd1fcf8926f8a8869d96ba07ba0f2946eab512c8358d53a31d45859701c209da

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 610.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b6801dd5cf7db1f2215dff99743221c0b7f4178d4e371f06d92d1c3eb7c98dd
MD5 de0190aa94532cad1a948a520cab13f2
BLAKE2b-256 c28669307433bc9f21dc917bb0810d5e741eca49682b14768a7c874115523764

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 705.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6d388a238a262d284c336d565a17bec659b1ec7ab8954f5cb55076259e2c8567
MD5 7efdadd4b55e2ebc0bba1596e2399ad0
BLAKE2b-256 18f4a7909602cf83851a516c9b109db7cd94af3961a19199254fad5ea2485956

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 721.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 85e5818f7c448816d71c9628c1aa0b2c05040aa55c4e8ab1179a495fe777ec3c
MD5 211775318c299d26c23079e6bd559ba5
BLAKE2b-256 d440f171c17c1fdd1b6e33f65a78f030c779f2233686dd329cbfb94f4c4421f4

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 705.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 541b475fa8f975e6fd9fc31645d17051914972d3dcafdae8f0eeae5c100f6bc4
MD5 8c03a67fbef406da0586ab084099d179
BLAKE2b-256 fcb8178d6e00e0be42288c67e42c0296ed9a5af0a4c332d97e1baaf54cc09482

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 721.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ddd9502de82c89c3c9fce19faf00a2cdbe52a098018fac709b4c0cd0c4b8d5b6
MD5 ae2e515295b1cbf199927f7df60fb572
BLAKE2b-256 d19d185d1ed54e4402e28ae87edffd3a2f76f2715b765e3ee54c7189af0b1558

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 506.2 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec48cae9c79f10aba3c01e7586d76914c56a9d42d60df64c4068d4c98b0232f8
MD5 996a21df9b50e44e0047610cc22dc9de
BLAKE2b-256 422a31235f619722348797bd6b34d0e361ac1933e90597f38a9cd5f17257f99b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 400.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 78c70007ae1b02c347f152f8733f7bc9e9872dfa436fa4d2d73d5e89e8478a47
MD5 2fbe291cfac7ffa0d8ea92e2400beea9
BLAKE2b-256 32ce6078f6dae680f96c8dee4744287e7f13c21107ab9e7c881f1a509143ba6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 311.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9b42f5917f2d6c901746870752cc4491487e3d3febf9cd4f189b277ad21f2356
MD5 da60796f8c0d623669db45a55ba4fed0
BLAKE2b-256 3519e6e464260ef09267f36143dcb24b7af737447aa6b5006efcc38661393fc3

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp36-cp36m-manylinux2014_s390x.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 665.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ac311bb278cc67f86afb97d1896e3fad8e322c1001c57544d597eb51051855c
MD5 f79bcaef49aa76ade334f4c91d7a47d3
BLAKE2b-256 611efc61c65633ec4df255686626536462461d0d486aa5310cc7470718a057c4

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp36-cp36m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 674.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d359ec8eab5f0a84996df8f9d3e8c94570ec633eadb3b2cdc84c2597db0cdf7f
MD5 6570b61dca5b58db785fc6c85775dee3
BLAKE2b-256 9a26d1b8b8249e6cee63514122b482c3ccca71c64c35e7156bbce05e750ac72f

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 594.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34a936d4cef56abbd060169a2b9e268bb04d2a4624de5bd4117efb0ea1ba913e
MD5 a316cfa60edfae4d2ac54a667417ccf0
BLAKE2b-256 74b780fffe0153c07a533ef6c9f1915660df6b43e5efb668b13e72e321cd56fd

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 691.7 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7bf1a4082636c216eb989f8dbb70771188981fb96d610f8b62e657b512105c95
MD5 b2663e7492440460adadbea950b2f732
BLAKE2b-256 3d8b08927fa1e3bc24cc60fc3266d969e42163f139c372f94521a39fa8279fd2

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 709.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e15e742df1c9702651c526e7b7f50da1ba30f895d80fb6b7d8d38d88b87e0ad4
MD5 6a2f41df9f2a53dfe73203139066058b
BLAKE2b-256 709b2d05ba766e2dde675386f3ed7e2b6ef8d7c01539461654758d55dfdbb517

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 691.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cada02bcf89e8bf3153e02bef6108697bfec17588843601244e6b8813e267175
MD5 d3166249be9a1e2673e292a3654eebab
BLAKE2b-256 9c1a2be4eeadeaddfbcd63866b6d91ab5cb8c194b049b90e53de1115fbf9e76a

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 709.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 54f4103933e6c1999b49695158b18abfeb90f41d874ae304656d3f462bd1bfc4
MD5 665000ce656a9c5257764f790ac6f429
BLAKE2b-256 d7e011c7553bd77d14b8489685cdd88fccef80ef35cbefa4f1adb88164b687dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.3.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 500.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 babc410a5163bc3d53e3092164d7b25f9436295218b97b5c786ff1326f7c5ec7
MD5 b078d497992ff695d966626f14505850
BLAKE2b-256 b828d240303db147677407bcfae134c70b3b3bdd10e7cb0f5730f4b5f6d7340e

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 397.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d7813a8c05bc154e4b5a9118020827b58b2a3aefb55e8bba9e9748bd49b24a54
MD5 11f1428c8b9832487f7849cf0fc1b164
BLAKE2b-256 f36f2ecaeee9539f792eb8fd4d31ee9b54b0313b8a3e714c0548c08ff6d7c66c

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp35-cp35m-win32.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 308.4 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 996f0e557de675221d409ba6eb0c2ede6633b88dadf9bb67f131e344439c8b30
MD5 812a649bc510590c35e28fe4d5b538fa
BLAKE2b-256 ab9b0907a631761cc8355ed0927f49d98cf5ddaf268b127fd15e639ed9634dc9

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp35-cp35m-manylinux2014_s390x.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp35-cp35m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 663.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0fb36fd5af2f0c02ebd165b599f8ba853645ac64c6a69c170813436ce7c253a5
MD5 8bf040035fb10aa25178cbc47c8a5837
BLAKE2b-256 631512f5c1cca2b6c605f1916b34ec4b9a64050c1acc3ba78a154c2d57b9eec0

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp35-cp35m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp35-cp35m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 670.0 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c945ff9b13064d5bb60dce8a01431dd28884eb8f0b3560d8d9cb798edf37065d
MD5 57e7204b72a6958d2f5f4d728632254f
BLAKE2b-256 c9b139a8eb92cebdce3c14a6d1815fb69286e88cd2de7774f897bff7747b071a

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 592.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 073c30ddb9e11ecf8ab6e52ac521c17b124a895073ca5a691ba62ebd8f6f63fa
MD5 492ce5c9a25341a0783f1766e89535d5
BLAKE2b-256 54aabb68f17ce57ac714c25f97146e5d143db0e175ea8e182bf2516b4ba38f1c

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 688.7 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 009e960adc3db594545547ec522f243ecbfaa40c0edcd91bf7f57eef1b45dda0
MD5 b49b3455709ba3dbc114ecaad1930a3e
BLAKE2b-256 0f32234589bffc6914bbbb7c8db1ba66c6c688645b38b5bc5dd5c76f1497b191

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 705.1 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4f84afda9d10908fd7608df026541f19ef26d698a08b687c622d1b748e124f32
MD5 c9eac3f1a3cbd2f6842875e5001d6b1f
BLAKE2b-256 0d8b5d83525c08b66b8f3c2d038eaa90176548d31ddef7dbbc755cb03c795490

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 688.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 76e7f95cb27b887cb4861e5ef776ada18a670fd697f804a6eafc40fa7921cf89
MD5 479a110cb8d7436434581ffc6818c795
BLAKE2b-256 e8c6f8473425d48928600b1e96d30882e82d20345da851657c94ea5eb583d752

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 705.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9027cd321dcf4558d953d90852e75a10b1ac1ee8578ad5a22cd9a601ac95d07b
MD5 3d61dda4d78534c8497e6091bd3ef076
BLAKE2b-256 00a8211a44c2015609a63472305bb9ad46c3b4dedd534f61e6b585c62b4317f3

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.3.3-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.3.3-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 488.9 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.3.3-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4184f7cfd10bb912dd4718773e7d3f35a4dd18e282b3531f19edeb618bed43a5
MD5 91356ed03e1420b89014644b4fc40a4b
BLAKE2b-256 d6738ae82bdb986ce24f4aff2856f3427f1014ad9e7da4fe5b94583aa1c5f940

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