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

I generated a list of 10000 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.0.2.tar.gz (73.3 kB view details)

Uploaded Source

Built Distributions

rapidfuzz-1.0.2-pp37-pypy37_pp73-win32.whl (126.9 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.0.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl (357.2 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (285.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.0.2-pp36-pypy36_pp73-win32.whl (126.9 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.0.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl (357.2 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (285.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.0.2-pp27-pypy_73-win32.whl (92.2 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.0.2-pp27-pypy_73-manylinux2010_x86_64.whl (236.7 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.2-pp27-pypy_73-macosx_10_9_x86_64.whl (180.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.0.2-cp39-cp39-win_amd64.whl (204.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-1.0.2-cp39-cp39-win32.whl (126.2 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-1.0.2-cp39-cp39-manylinux2010_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.2-cp39-cp39-manylinux2010_i686.whl (5.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-1.0.2-cp39-cp39-manylinux1_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.9

rapidfuzz-1.0.2-cp39-cp39-manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 3.9

rapidfuzz-1.0.2-cp39-cp39-macosx_10_9_x86_64.whl (338.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-1.0.2-cp38-cp38-win_amd64.whl (205.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-1.0.2-cp38-cp38-win32.whl (127.1 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-1.0.2-cp38-cp38-manylinux2010_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.2-cp38-cp38-manylinux2010_i686.whl (5.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-1.0.2-cp38-cp38-manylinux1_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.8

rapidfuzz-1.0.2-cp38-cp38-manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 3.8

rapidfuzz-1.0.2-cp38-cp38-macosx_10_9_x86_64.whl (336.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-1.0.2-cp37-cp37m-win_amd64.whl (205.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-1.0.2-cp37-cp37m-win32.whl (127.0 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-1.0.2-cp37-cp37m-manylinux2010_x86_64.whl (6.1 MB view details)

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

rapidfuzz-1.0.2-cp37-cp37m-manylinux2010_i686.whl (5.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-1.0.2-cp37-cp37m-manylinux1_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.7m

rapidfuzz-1.0.2-cp37-cp37m-manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 3.7m

rapidfuzz-1.0.2-cp37-cp37m-macosx_10_9_x86_64.whl (335.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-1.0.2-cp36-cp36m-win_amd64.whl (205.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-1.0.2-cp36-cp36m-win32.whl (127.0 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-1.0.2-cp36-cp36m-manylinux2010_x86_64.whl (6.1 MB view details)

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

rapidfuzz-1.0.2-cp36-cp36m-manylinux2010_i686.whl (5.9 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-1.0.2-cp36-cp36m-manylinux1_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.6m

rapidfuzz-1.0.2-cp36-cp36m-manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 3.6m

rapidfuzz-1.0.2-cp36-cp36m-macosx_10_9_x86_64.whl (335.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-1.0.2-cp35-cp35m-win_amd64.whl (205.3 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-1.0.2-cp35-cp35m-win32.whl (127.0 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-1.0.2-cp35-cp35m-manylinux2010_x86_64.whl (6.1 MB view details)

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

rapidfuzz-1.0.2-cp35-cp35m-manylinux2010_i686.whl (5.9 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-1.0.2-cp35-cp35m-manylinux1_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.5m

rapidfuzz-1.0.2-cp35-cp35m-manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 3.5m

rapidfuzz-1.0.2-cp35-cp35m-macosx_10_9_x86_64.whl (331.6 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

rapidfuzz-1.0.2-cp27-cp27mu-manylinux2010_x86_64.whl (3.4 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.2-cp27-cp27mu-manylinux2010_i686.whl (3.3 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-1.0.2-cp27-cp27mu-manylinux1_x86_64.whl (3.4 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-1.0.2-cp27-cp27mu-manylinux1_i686.whl (3.3 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-1.0.2-cp27-cp27m-win_amd64.whl (132.5 kB view details)

Uploaded CPython 2.7m Windows x86-64

rapidfuzz-1.0.2-cp27-cp27m-win32.whl (92.1 kB view details)

Uploaded CPython 2.7m Windows x86

rapidfuzz-1.0.2-cp27-cp27m-manylinux2010_x86_64.whl (3.4 MB view details)

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

rapidfuzz-1.0.2-cp27-cp27m-manylinux2010_i686.whl (3.3 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-1.0.2-cp27-cp27m-manylinux1_x86_64.whl (3.4 MB view details)

Uploaded CPython 2.7m

rapidfuzz-1.0.2-cp27-cp27m-manylinux1_i686.whl (3.3 MB view details)

Uploaded CPython 2.7m

rapidfuzz-1.0.2-cp27-cp27m-macosx_10_9_x86_64.whl (208.5 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2.tar.gz
  • Upload date:
  • Size: 73.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2.tar.gz
Algorithm Hash digest
SHA256 31f796b41f387fa01a5059ce5f6b38f76a617c35020ced34e19dfa1c2078172b
MD5 6f98121056fabf6e6809b4db04ac89c5
BLAKE2b-256 819e6d31e1a9df3e622718280e2f23e7df84b8f957c58564c75dc9e8bc0f337a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 126.9 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 5019cdcf2b412f2c2138bdabf85709b7e3d820a2b703404e17cc3b24fcc2c2fc
MD5 0e3daf4e1edbf5c96dd12e297e709c07
BLAKE2b-256 8f26783f396bca5c3465a951780148cf214b054dc38d4fd2852b2356593265c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 357.2 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 08092ab97a2f3c0a3b426024c3e53f109429d24f4eac44369f98f2a4912049fc
MD5 46dceb0f763bfcabf91336245b23ebe6
BLAKE2b-256 fc46a238ee9eae1c9fc9e880c321a200daf756c33801427150f14037e662bf34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 357.2 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e528b3a32ca32a231097fc78db691e1e698774a7415c6d64670e3fa3936ca44b
MD5 2ca7dbff616ba1f9295852b4adcb913f
BLAKE2b-256 5c1e4f3253b2563a2858c951308e1ac2bc6b5bd026547cf8b0172e168cc64b4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 285.2 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1f01fec6c4b5356d737028685f4fb42a7ad86d23d7b635819d42f9178aead18
MD5 a19a0b03435747f930d2c8bd2b150b32
BLAKE2b-256 3c624e75639a7e85c203dcf0b743628d4e3956843f526afc13953ded949f70fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 126.9 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 13038118d91ca0c50c4f01387426167c7352776e3c5b072365a85c599ea7c1f8
MD5 1817200e5ab316b2020ae7b4ac5db5cd
BLAKE2b-256 f538a1043e52b8b5b9710fc9cc06886656aa9442f314151c06b2e825f47ec5d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 357.2 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ec09af0061cf6e18608c97900cf312e2723fac8f8b3ebd25908b59924d2d5c27
MD5 d12b471f6ebeef56f8efc54d6f9bde35
BLAKE2b-256 448dd1e4d5332aedc562e3a83526dc1a4b6cc3ff9a080aa1f45eba929cedc96c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 357.2 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cb758dc3fb89f09f694c11b995d7d8df9105524a12ad3127869ad4889f5fbc64
MD5 bb70a2f66d9be3bc19623b21729f111a
BLAKE2b-256 c588e349926bd7151403788a3b5effe085032848cfd6dbebfae3f1a643b38a72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 285.2 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f08f842721c970222532b0848cfb3f21748b1afeb07f70b6f0b80f958bb9200a
MD5 deb02745591ef6ee03cc9be16f237594
BLAKE2b-256 378fb1cab18d6a090a7f2152293cfe3d7fa73050f892be8899f82dd3070fa131

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-pp27-pypy_73-win32.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 92.2 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 0bf972f5d63471c4c508029d1f8a07c791e7eb3b766f602e3cf383b477770944
MD5 3f75cecf030ed5065b341f57e92d1d87
BLAKE2b-256 30676bcbe5aedc3eb8291e1e8ca8549770d673a8fc9770eb2911e3f4c8d67a21

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 236.7 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bdf7ce601cee0bd75cb7d43c3aaf23bb38395acbd62f71448ed8722b90fee368
MD5 3050b7389b01050f7c2d9759a5b7a2da
BLAKE2b-256 3f321211c259e3c2501caa98f46af76b2619b799fee4dd9f3432c960c9ac34be

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 180.5 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 975c8b695d0403af96d9f05d3ec22a7b6f5985bbf17ecfed1d1c459bd79d4bc8
MD5 bfaab7eba69e5c49f2a93357791577f4
BLAKE2b-256 5eded997a9de31d172f21615dcd811081057ee405bc875c0d5b76193651fc403

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 204.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2e49fa58d399f0b5b2bcd1c9f36725fd9a3eb9df0e6b7f69158e15d1b5abedf2
MD5 2409384920283f149bb629feef82fe81
BLAKE2b-256 9da13dd94886c1c9fb2415bd96d9d5da1d25720bc65953a4406c00625dca5949

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 126.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f85d7a2fe7ef79ceda9434288ea99cf9e6f5c126af4d93dfb56d76b2b7350480
MD5 df3ae4de5c0569cbdc7f999e9e8176e6
BLAKE2b-256 6d5466a373958c277c182f7dd8594bec275ed90f0e90e8a380bfe01761a9e70d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 516438fcee68c4324773e678743af2f5f0954efd09356b28f8d44c93d9aeb5b5
MD5 ad0df94a63a7f05243480ad4acd659e7
BLAKE2b-256 1edfed44125cf1a177f2283af8bdd84ffa39ec0a25e992822dce9c53721d43c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b352d83c8cc6822184e2b28c21086e794158029db2c5b47dabbdb2515ffe2d2e
MD5 211b7a12c37e66c207243d6dd294bfaa
BLAKE2b-256 44021b8f33262ab748cc15bac8beb41ceb1e685568375640d0fcfd2f7b11a792

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 94362ffe475cbc1bcd61d4c57697ba32eb126695cfc7cbdff934605a5d53cf1a
MD5 bbee66f1bf4be59bf7fd16ba91cdd617
BLAKE2b-256 d3dd7d19b5afec32c78120a578c22effade3e2acbf5d52b867d6d6a5878d28b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 56decd5a998068f18b8bb01b7d9585d514ef59af117d2b4cb188810bd4a55868
MD5 4acabf277f2bcd2159d4bd0babbd3248
BLAKE2b-256 13accfc8482439f3c13df634c81830fd82f246e392c9d5dcf0760608d771939b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 338.0 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 765cafa58a1b56f8174cad4ed4919bc929dce918023de468f578c66ef98c3d89
MD5 47a226111784fd0510b5e67aaf472121
BLAKE2b-256 54a76f0a04d8d3f6d2a0bcf7cd64f919dd6b822fee77cfcca5169cafe1111e01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 205.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4e89c59cf958dd42d82721f493e4f1a523548c87709750439a079410a1d6c582
MD5 a2c397ebebba71b07ce4926dab44b549
BLAKE2b-256 5fc3f3f6f4eba35c0b2c35a70fcc14dbfa0f3fd8e29e329f1ab8da75eaa1d193

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 127.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 67b32a3ab6b6b6bfc9781f7dc4df7fc5bd2e3d4ad50fd6a49d86791fe401ea0c
MD5 172b6357711b7d2e48afd0a5970562da
BLAKE2b-256 86e2a3757cf70551923b41f7e55661fb3f8ce4e76328ece3e9d09c5e01790e32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 022a1d6795c666377e83708cc691b4173c3307546a257310a1d97238aab72bd6
MD5 f8ae6d83a0f602def48f0f801667b23b
BLAKE2b-256 9e12c60fe23f74ba7ea396780356c47fceb217f0b56c6e2444dca8c716780a73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a2d62a9b60ac5bec3392fabf26377e9be27e0728a6d2e987269737aedc4678f5
MD5 5811abe4b11242f6f7e5fc4619429aed
BLAKE2b-256 4ba6482f7e31aa8d5502e60f33db5c252a6c4b850835b6289c1a11cb93367aa5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bcdebc8c47a42c78b7506595913736775176b98a0f9ca43b2ba7eb6ac061f930
MD5 337babeb53b6c3e5bcd227d56f4d0e0f
BLAKE2b-256 aee5967e1a638e40f02129ce169aba43774dd0f43d0fd26d8430c9aa2c639daf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 26f51251e9e51f0c716882e160403d00cfcf5efc220646fd83f13131a767ab9a
MD5 0132a79f7bf52469d8b81727feb43144
BLAKE2b-256 3d39315a6b45b9d14c2732cc875de3c3deb5eefe8029b4a4a672d39a25ce7ad3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 336.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6382378714357b86f9a875dd007985a33f3e7e0ea73c43a788bc521e5eda0763
MD5 b239e7c2871c34c1d32f6ece50beb8b4
BLAKE2b-256 0dcbeb98cc268d9c2d5230e4c3ddf3c3e489a1cbfd2e2eb77c4a8aceb144fd5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 205.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0dfd401dc8ce8af2af25a894dbdae6ab1122a163e57b252fd9b076e0cc5c06cf
MD5 e3c8d9572b8c0b3fc60d0b3fe772dccd
BLAKE2b-256 8f3fe3083d0af31f36f71fae2134571ea2b086174c827b9411d887030e0f2ad0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 127.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 002165558140e2d36f9e39f7337e27b5d2e38d20bb7e5c91d670ec0a3099df60
MD5 4a5a8833e68bc6a8f40909b95f946406
BLAKE2b-256 0430224827e051397bbbc0c14c2ce0fcb39911829371d756dbbd3c9dfba23661

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6cbb695af882d9b02d2458761729681f131dfaaeeadc5b61815e09c05e7c3d50
MD5 fb62f3f7ea0c40916b622b3153cc6fde
BLAKE2b-256 796c7044e72974941b6abf9deedfcd0938d754aeeeafeb5b59319f08259f65ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2568b9e60b57eb876f92a1c6230ead64ccec11ed1db3302beda5634e99e9e874
MD5 fec3dd345bc43a53a8f03b9b50e43c2c
BLAKE2b-256 fab97fccbe45eba10aff52013eed084cee1c4d172ad0bbf6ba6211d921ee8f70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6443d877c14c28d81c7ef58e773d9d8b05b2db867e6fe32973f0a3bd36c96f88
MD5 ff9dab40a4a4e6e6a0b1696d3362231f
BLAKE2b-256 1e6cda3ffddf3b98d140843f45ddee5636181c9f234b2c2990e5cbeae15d2eea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ca0fdd2f42f96e7ea56bf5723ee73729ea4be06929282a9ebd24f84f21943ab7
MD5 5b2def2f904c1ec2f9defb7826826478
BLAKE2b-256 ef0d8976887ea94e09eaf4183b92b485dd6e0ad9d5b4cfdb8878cb434191766f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 335.7 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 07200eac5c62f7ae05da31de3f1839875826ae692536789de9574b6fb95f6aa5
MD5 303abf3484b3fb85073d4b04b77dbbef
BLAKE2b-256 57b921882429f0d9997f0a2909adeb586f1485715fd8016c4d169f17848c6da3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 205.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c25dd2375c5a6ebe0c9e578b62a60a135765ff040d60d2ea3e674ae091510e05
MD5 621041341a9501ff08b0c17e3bbe3a0a
BLAKE2b-256 e88f5626b8881d6b008471d154f14239f40fbb995e6d04e64169fcdb165c2f3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 127.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0e8e2a2e9908df20b30509fbd4a1635d6c04b33cbb515be72bf04cfe400bf09d
MD5 2348f24a4fc1a143bd498f29bc0ddea4
BLAKE2b-256 c59aed54a27ce88a3b5eb033f1483b9bdcf58d21008d7b438c1204fb7daaada9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1bc6b8defb61a8d1e135847045081c2d286a85779448dd7b8954fb669b90532c
MD5 d0243c49e5d1e06c353ebaa547c54064
BLAKE2b-256 62cbf98ee0270756069aca374bf4da20f77a38bf8da9b57436dd9ef976f70cc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 948bb476c4dd30425c136791e1f0346a6e8eddb2a1147220fa7dd03dd4113103
MD5 85bdbe3a871fd471ba353364b11e0471
BLAKE2b-256 67caddd4d1f0144d5e24c228ac54b85349f7086920584add6bb0870f6919aa1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c2b06617538364562c57107a4acfb94a73fec29bddadbe62f5c09d889946c432
MD5 6d72f39381c00ccc772b34a340b6cb3b
BLAKE2b-256 13415a53cef1cf12512750d6e9d647c491419d6f7d027dffd2238a4ad8df6077

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 54f01988618fdff4af17cb30cf0d2c911fdf73c479a9872eb24af75e25faf797
MD5 b6bbf78dccc726ac4adf445a92363678
BLAKE2b-256 556c899ea0564af8de6be6ef9c8138410e77030de28881b253bacc6f2d2438b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 335.7 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd4ba4256fd2cca13f816a2a953a7b7bd51f663de4c34677283aea38d7baa7d4
MD5 56ddf1083b601d0b79bad1c6a53f4b05
BLAKE2b-256 376c005449595b6362478ebdcad0e4c5763848bfefab6909a2528cbc05f0f342

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 205.3 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 b35588b460dafe536cd5229d4fc8f69b33b318bfe13fa5918ae9cc8f3b6061fa
MD5 b8e24ae3a2135e85055615588b1e99dc
BLAKE2b-256 cd2188bf7e87425d4e11856313e4688dda43ff803a2fca5ddd183dfaffad0e90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 127.0 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 4a2180fefaacf07cceaf90ff81c5fe99b15b0b863ae4fd7968998b6c8e10ce91
MD5 39a1bc20a7662f60c056e7540f609b37
BLAKE2b-256 4b31adc52c019f426929f7942e97b76072854462f154a5f8063c319c8bca6670

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 76f178e5c86d973aa7e684cc43635a44540fa2b7473b8067b3242d63d5385ad1
MD5 ed5eadf15ce323b6ccc1a465c670cd73
BLAKE2b-256 a1ec5fced5bf890fc9924b12af90f8128ea7fc05dd3c86f645aa96c5ba93971f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3f6d5f43a44a7d03e0739be285daa34547867d62c7ee679e3ae52897c07847f1
MD5 0a9f66cf39fe47f207df98d8960c9350
BLAKE2b-256 1f8ab9a621b0b00477ac841fc7ba271af54ee5d8b3fe3eb36e89989c29d9fea7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 96d8edde509c57b282ba895017d3ac8c08145e659b928f387403a7d4f5bfc8ba
MD5 3cb549d9cf3b52b6fa71a0d124a24b9d
BLAKE2b-256 c4fc0f56e44ca042a9f5192bb89241f4e429ccaaf9394ef6dc5b6157e86f962e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 57c085ebc90c6271f16f128675f34a32cf1b96915051457521bcc5b9d5f89438
MD5 c9d7e162d3e045e353d4572c53c62ab4
BLAKE2b-256 a0088d5383fe4919636d6c3e50dc45df64a41fde7523261343ecee5d48ef79d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.2-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 331.6 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8d435b353bf524f9dc3ae307ffbdcf91bcf926568d4e353a09edcd079435490
MD5 b07c84b2b6dda6caccd7f5775bf5f447
BLAKE2b-256 3d7163588630b27186552b24bece1e67a3a11cf1d52e12e4f298af2ed61e9318

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8f82be18d4101a1b35c13fa45b7b478adcf6c75288ab3c5ff3aec2fae9aab10e
MD5 fba21c6f279c39cc4f998432eb094e8b
BLAKE2b-256 1e72d93eba1cb34c5459ee031bf11b79928ba965396135a3a2cc868a9700ca73

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9c2aeab3ea608ac2b085cc1022d3fa9004a6fdaad608b53e01810a34146907bd
MD5 27c404881a122c17947d1f7ce6829608
BLAKE2b-256 fbe2e8ace761d15cbf2c97fca11d543d48e54bfad4feea5fe1ebdcb8f4b6b3ac

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 54e0562290c1004f9d0a03e4d491e83d53bf2e5c776eb072b10aa870c66ebd73
MD5 98fa1156de9f4e021e120750ef7d6ded
BLAKE2b-256 9a4caeeef9c7160eb6231bcc723287f92559f1f83d45dc1e5b1e463ce36ff6be

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d08f65f15b31198bb114f93ce5908e23b9fe35aac2ae9c9d9677240dc5c0dce
MD5 e300afca4abac070a453bebb2fd95f07
BLAKE2b-256 f6fdfc6682c81742dcc857c65354d8afaeedf41d57d2f923a1f64cc79307437d

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 132.5 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 f4a3585a1970704968dab5bb2b348e27da0528c03b0046268cdf69d41584347e
MD5 50b96fec549737b1073ad462b0c3dbc4
BLAKE2b-256 a2f2e69b23977fb91c9b355191f5495f9f96f2b67fbed13c1aefe98a31812e95

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-cp27-cp27m-win32.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 92.1 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 6933a3da62161b9d8c008dbbb74bfabeb1c7fd6ce8264b6f97e23cf2ba8fa213
MD5 1d6a9c9cf29e906d2d94f4aef48f5397
BLAKE2b-256 90281e63ee74ecf3db8b25d0aa330517be137100c1147472930ed43a1bf3b9af

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f9560ae983ff517755446d1ac7ddd16f0150e930d809a1ebcd34c040149ee61e
MD5 88cdd89681db96514f7d841598252b7c
BLAKE2b-256 59bd5e7ad0be33d3b82bf9f4d691505421472308b340db5e968d0a96c3a30267

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f4631477722e33874fd90de15886b9b84ffd38c84cdd25ac7a0ce6bf67f77d3a
MD5 c43b02469e9bca822f915fc6b5f7c347
BLAKE2b-256 588d939b782f89f7ddbc71f300104f143a7b2d9c857e913b83d6dd762e3822ac

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8781de1292ca763c3d5734d1473a2d11c4f18834748e47b779c338939481afaa
MD5 13a7a7842c20e799511501fff267f02c
BLAKE2b-256 097455e8365fec1139f0d35fdede1fdc5bd88e27e75ef245f70d5230db801739

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cbc49446f2b0bf264bc1f3341f13c27d27b030fdb10c9dd79c88692e4adc74e4
MD5 96a1aefe64bd1104b10f3d59d78221ef
BLAKE2b-256 479d9bdf6166c6d7ee06d7eb4eff701509ac5c241dc0398484d9547019114c27

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.2-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 208.5 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dca152fa8f2f96639d5595b5fc04d4e3f0ca9c609325084e768dae075d7fd271
MD5 7b049eec3ebd6eb19159da424c523232
BLAKE2b-256 b9ce91ebb89bf0f4233bde9fe866327572c46312690140acbdaa3a47cba6515a

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