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

This version

1.1.2

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

Uploaded Source

Built Distributions

rapidfuzz-1.1.2-pp37-pypy37_pp73-win32.whl (287.6 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.1.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl (604.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (461.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.1.2-pp36-pypy36_pp73-win32.whl (287.6 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.1.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl (604.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.1.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (461.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.1.2-pp27-pypy_73-win32.whl (236.6 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.1.2-pp27-pypy_73-manylinux2010_x86_64.whl (502.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.1.2-pp27-pypy_73-macosx_10_9_x86_64.whl (358.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.1.2-cp39-cp39-win_amd64.whl (392.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-1.1.2-cp39-cp39-win32.whl (296.5 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-1.1.2-cp39-cp39-manylinux2010_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.1.2-cp39-cp39-manylinux2010_i686.whl (5.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-1.1.2-cp39-cp39-manylinux1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9

rapidfuzz-1.1.2-cp39-cp39-manylinux1_i686.whl (5.0 MB view details)

Uploaded CPython 3.9

rapidfuzz-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl (522.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-1.1.2-cp38-cp38-win_amd64.whl (393.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-1.1.2-cp38-cp38-win32.whl (296.8 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-1.1.2-cp38-cp38-manylinux2010_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.1.2-cp38-cp38-manylinux2010_i686.whl (5.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-1.1.2-cp38-cp38-manylinux1_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.8

rapidfuzz-1.1.2-cp38-cp38-manylinux1_i686.whl (5.0 MB view details)

Uploaded CPython 3.8

rapidfuzz-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl (520.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-1.1.2-cp37-cp37m-win_amd64.whl (390.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-1.1.2-cp37-cp37m-win32.whl (295.3 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-1.1.2-cp37-cp37m-manylinux2010_x86_64.whl (5.1 MB view details)

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

rapidfuzz-1.1.2-cp37-cp37m-manylinux2010_i686.whl (4.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-1.1.2-cp37-cp37m-manylinux1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.7m

rapidfuzz-1.1.2-cp37-cp37m-manylinux1_i686.whl (4.9 MB view details)

Uploaded CPython 3.7m

rapidfuzz-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl (517.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-1.1.2-cp36-cp36m-win_amd64.whl (390.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-1.1.2-cp36-cp36m-win32.whl (295.1 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-1.1.2-cp36-cp36m-manylinux2010_x86_64.whl (5.1 MB view details)

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

rapidfuzz-1.1.2-cp36-cp36m-manylinux2010_i686.whl (4.9 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-1.1.2-cp36-cp36m-manylinux1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.6m

rapidfuzz-1.1.2-cp36-cp36m-manylinux1_i686.whl (4.9 MB view details)

Uploaded CPython 3.6m

rapidfuzz-1.1.2-cp36-cp36m-macosx_10_9_x86_64.whl (519.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-1.1.2-cp35-cp35m-win_amd64.whl (387.9 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-1.1.2-cp35-cp35m-win32.whl (292.7 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-1.1.2-cp35-cp35m-manylinux2010_x86_64.whl (5.0 MB view details)

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

rapidfuzz-1.1.2-cp35-cp35m-manylinux2010_i686.whl (4.9 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-1.1.2-cp35-cp35m-manylinux1_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.5m

rapidfuzz-1.1.2-cp35-cp35m-manylinux1_i686.whl (4.9 MB view details)

Uploaded CPython 3.5m

rapidfuzz-1.1.2-cp35-cp35m-macosx_10_9_x86_64.whl (504.5 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

rapidfuzz-1.1.2-cp27-cp27mu-manylinux2010_x86_64.whl (3.1 MB view details)

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

rapidfuzz-1.1.2-cp27-cp27mu-manylinux2010_i686.whl (3.0 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-1.1.2-cp27-cp27mu-manylinux1_x86_64.whl (3.1 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-1.1.2-cp27-cp27mu-manylinux1_i686.whl (3.0 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-1.1.2-cp27-cp27m-win_amd64.whl (304.7 kB view details)

Uploaded CPython 2.7m Windows x86-64

rapidfuzz-1.1.2-cp27-cp27m-win32.whl (241.2 kB view details)

Uploaded CPython 2.7m Windows x86

rapidfuzz-1.1.2-cp27-cp27m-manylinux2010_x86_64.whl (3.1 MB view details)

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

rapidfuzz-1.1.2-cp27-cp27m-manylinux2010_i686.whl (3.0 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-1.1.2-cp27-cp27m-manylinux1_x86_64.whl (3.1 MB view details)

Uploaded CPython 2.7m

rapidfuzz-1.1.2-cp27-cp27m-manylinux1_i686.whl (3.0 MB view details)

Uploaded CPython 2.7m

rapidfuzz-1.1.2-cp27-cp27m-macosx_10_9_x86_64.whl (396.4 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2.tar.gz
  • Upload date:
  • Size: 261.4 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2.tar.gz
Algorithm Hash digest
SHA256 9f6d0efc853f6bce220a6d6b659c726ac055c397a6d8ff8dad03af87ea3892e2
MD5 00a0be1603261296e78a8875fe5cb49e
BLAKE2b-256 cfc2495228e9dd0fede2e3037e8eb17dac53bf17e6736c4e0c54055f58de12d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 287.6 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 9fe5357b4dc00af792b75c8f242c041edd1007661f04595afa6672540aabaa35
MD5 7da9b6546489133d8e8b1ceb633ef87c
BLAKE2b-256 96430dc29c78c31b8918c75707940b3fcc1a14ca068215aca7f8254344d78423

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 604.4 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 10dfe0dacddcae8e2e710cac2d563e7824b03be57bad8d84f4d8777b73b880f4
MD5 3f0080ffdfc20c11a00fa103b584c0fb
BLAKE2b-256 a8b5c9f0bc96d0841efcf711b574df71e8de146f1d548b3b5418933984ac5015

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 604.4 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b6e9e6b9eced7cfc59c10413a8b1539aaf955acc1f94e456d5be0031c4a901ed
MD5 28cab564b04312915f74485a044914ce
BLAKE2b-256 72956911298edf058ce832d419f10905682057327d7227117c041a35fe13a2de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 461.1 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e68adaefb85eace2ce4a91506fc0d4271d42eeacd76c737f7361750ccff6c274
MD5 78ea7421b93ae37d5cc3fc670715fe78
BLAKE2b-256 f1d161eda6231e7f2f4b5b67be6c6e6d6b173e5aaed9c855cf85d207c63f797c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 287.6 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 4019a7da144e996e269dc4c9801bc6a02054fb0ad19f5ececcafb5f6c7e22837
MD5 38b8c597ca4816de3e64f3e4a13ae45a
BLAKE2b-256 f7c7f560d9d963787ea5024957da1362bbc59cbb73c3fd00db87009529c4130f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 604.4 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3c46782030fc7ba7ec2a6b5fc2257b08302b7ec04489fe78d8f9ba83736c16c8
MD5 8a929f3708decd8289f9265e39dbdf1d
BLAKE2b-256 19f9bdf0a2176ef69be5480db4cc6780f8849839c21e52cbda1ab3d24e2fce5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 604.4 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 12cef77d44c78126696f6fb2c793f5f58c90efd527f4218acafc2cbaa8d2b3c6
MD5 22a5f86fc3d72123e6b40c9ac39c6466
BLAKE2b-256 2d775b36a52e59985b656a735f17bc8a4060c897a86049b18a989714bbd2fc59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 461.1 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e75cd2a3fb20521011c917783a40bd460138d897d8bbb5091a5d360a035f8b23
MD5 5718f4ada7f1609128773714a08d12d4
BLAKE2b-256 cfd2bb9fc8c8e7e77107bdd66ed8879f341d3924e982efad5b29c4a79ebf790f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 236.6 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 a65dac4033a59a0a81a71576a04d6cb01b9b8903169919312cf1634204083034
MD5 bb802ed179f4a5602015f7ff82fb5d2e
BLAKE2b-256 d66d1d36de4e4c7fbac7524486a17c42316bd94c95bff4e7671eb4b165242817

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 502.4 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 886297f142246810f6ebcdc342d5569bcc298a733d8d22b9e701841e3121df79
MD5 3edff1d4e683184293896d30dac7d210
BLAKE2b-256 7c0ab3ecfe410d5839dcc29b3a0d3854f6383b2ee96711ec8d1e07e8e2bf7c35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 358.6 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd5818a6fd109dc3f550253b01def508fc29cb90f4354ac523b081e19d590935
MD5 33e61f4752d28b12bfe3a9683640eb1c
BLAKE2b-256 89709b64fc2b1c2b657755b11c3d6fd0c3a60b99759926eec70c8dabbc1b1787

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 392.9 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c16313ac499ee89521972da65875dfa51b866fc3b7a004eeed788895909a6fdd
MD5 fbebef596f1d16377b143808f504756f
BLAKE2b-256 89161ad1184da726738a142be65a3a46194d64f7b75300c1c086f8529596fe04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 296.5 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bae3034930af4750d163a98d3d6803728b9956d9979700c107aae2d17331a1f3
MD5 445e9d015f6b9a49bddeea5d16d908ae
BLAKE2b-256 7b85c281b7de69ac1e237eba071f1316f0861e4bc300e4bd9c21c3d1b220ed81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 5.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 821933633460227ac085a6cee81e5d6c0a4d083894bddf6fbb76970b93056722
MD5 08a60631b69486414f5cbe2f85e3d0a5
BLAKE2b-256 ad6649c71d1b014933646b86b6070cbccc9496611bdf3787e913c0e3fbe2b766

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 5.0 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 096e560d3eaa7b3a03e4e77d4981027fbf5ff3355373ca3d78d1263dc14c7a24
MD5 6fcadcd9097d033a4e4a4c37baffabdf
BLAKE2b-256 439ffb4cfe1d891c3ee50c6c135c79ee8b1657b8d316a893405f29c6c02c373c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b5d8d8891e80728e28763d496e350e439d3f4bb60398449db5ca0915322b5aa8
MD5 5e0ea34f4ebcbcd857f7507d7c6f3257
BLAKE2b-256 97f325e853434d6c9e53debeb05dc68d538f0bcaeca73030a68fe1572849852c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 5.0 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a1afab9d6aa3bb3c3d756cb746473c0ae7cbe63a605f3396a4774594a4ac838
MD5 c5b75fc25104a2472642c64db1372aa3
BLAKE2b-256 0ed950a243c5b3f8d2ce597b577ec4ccaadcf072fadc5eefb5bfcf3c13b128e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 522.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c77e2f00859fa4e1236fd36d4236d3bcf25762f12b165705b75153e6fb7d2e1
MD5 e0309958e9406d883b278a5cb824d30e
BLAKE2b-256 99e68b191d19e3dcce9e2242cea91abd12dbd64f04e6b9da2ffd7cb8426bdb07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 393.1 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f74420efdc31b7d45fb6a79b83e337621c45009f12abc92fd84570fce01abd5c
MD5 bb19604212f5a2c886bcfc61bcead641
BLAKE2b-256 e88e03e17ad60bb664ce321b1946d1adbcaf94fc642a5011a18cf554f44f37be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 296.8 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7d31c4fb337215fbbc175147f70071f30782ee3555d001a68f654d96a1a888e5
MD5 c5c4850bece388d07f6d135444e71e4f
BLAKE2b-256 350ce8d0f71bfc4e10854e4a0911706546ae1281da9210ea5fb26538048812fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 5.2 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0de97e6359706f73a358c4a38f3514cbcb278e92c7c2e7c0a7e4215df7e41d86
MD5 818791a7a8f5264ff1f8399c30c5683c
BLAKE2b-256 7534a9c5ab780a3e4a746e682c8df28f7cea07f7498536be161c35adab4875a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 5.0 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 14749a192037b236d85e7b91c71022d82601cdcea56e7b85dc8d27c59f80ca25
MD5 b97ae7ec89c1db3736075ebd296e5481
BLAKE2b-256 8da38ded1a667898efe36538ae97adbcf63398f5e3afcc233be596bfe43e185e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.2 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3d07d678428b052c0ac484662cb6d020783da49b2accf6f5443fd60e750a3b3d
MD5 0362d1ad80c30bf8e8862e5f35dd1af0
BLAKE2b-256 f6bc7dbac255d7f4518484210af909e14bd58610f3e56343e63da31a1236d1da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 5.0 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b913063c59d3e83ea98e27567ec5dab751cddf033d333920dfbf60f46e43bfa9
MD5 bd81a9364706a476e26fc759dd5c7092
BLAKE2b-256 eaead161b2213d305c496fc7a2b9580ee7784a5d7d1d10e439b1c1cef3837e79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 520.9 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ada40c671b85ab76de05bd8608bcb5d8c220292891f37dfc5edeecffde07b25e
MD5 35d1d1400053c72e7b4a30f8832b4b0f
BLAKE2b-256 db4816ddffbfcb8dda97650a97599cd0be8cdfd31587e6e8c703e735d960bac8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 390.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6e7893e1a12dbf81da925665fee8a28da0e8140ffa3c1f9e161652474bf09992
MD5 6eca0c2441b00b2c3942c24354da52a0
BLAKE2b-256 7a6a72460b3fb8c2f4a6ec7f956c69614d55585a481a056f6e94f0635021b40a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 295.3 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 63c6fa2bea9b7dfef57f5488ac792cac568e83b39fc870e7df3d092b71366a30
MD5 487479a2a74e432384e0ce9c9aacea52
BLAKE2b-256 27a791a321c4e4bc3b7f747d2f3bccd813ebcfdc56721bb8e7341f9b2f5b1d7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 5.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3f6d70a18c48247287a2fc48078b1253164e85018c849ea3b05c0358fcd4a7fc
MD5 c6ea0cf8b5605e3f624eb3e5d9eb0ddd
BLAKE2b-256 e3712bad5a087ad2bf92708e5424cd034a79aa0c22ae7b335beb89c2e8a1eac9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dac466af257e4470f3ed8f6e34719d0a8a8efd97e2b45851ad9c28ceb87a7303
MD5 7258e3dfba75d36009245edb5a74ef88
BLAKE2b-256 17d1c90ee06d9458e6667607e4bb51be50735d36fa1a87659b775a3b2f6f6f44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 477082d0167d31aeab8ecc083e2ac7e3119fe27d685601dd4e19d2abe6450ec5
MD5 5434a2efcf1bcb26519377a544bcddd9
BLAKE2b-256 74ebdcbe39cb134c5e00097f7d78247d9d8fc29b4c541ac275893159f65bf67c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ddd41a7937132ad5af03288340ec0705c4e08d1171a3f81a90d9e8113c8ec3ee
MD5 0497fbaffce12d9bfd6bae4cb835b0a1
BLAKE2b-256 4fb4cc176174153eeee60c412e3f3e769857b395a45d2dcdc34d96aa0a5a5b84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 517.8 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 75e3bf3d855569c7d45164a95f75aceefb9aea7568c14a5220c2eca7dd913434
MD5 da7deb4a3639d53d095b7490cc4be282
BLAKE2b-256 20a16e41cfbd1ca0cf6c4593d5bfbc3f07e83282cfafdccf058f7a69eae8b3c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 390.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d60538ec455ea21b50eb85e08fbf1f28aa58201e1ce5682eb36ccbb788373bdc
MD5 fc445a46bdedf20c1ac0f04918312db3
BLAKE2b-256 540be4e379d19271144b11f8ceaa3e1c9147bbb3aa2ed2ddf6d5e1d79e5d3461

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 295.1 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 37537c7b8d4118e2b30e10ff17ff0f8af0353bdd7c6a2380e9779b13b8661ef4
MD5 6c9aa141a682cf99f5ec172c55f7d837
BLAKE2b-256 df2ce75924a4c5ad33aac37af3dd8d240c8bf66d102d22ab847b9fe6aa03fbe2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 5.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 268a413190806d457a9c7f9b167e0c3f62e29a6dc4b7a3d4175b115cb0c1c29a
MD5 c5a6f252fe793c20a7ead64fc36c75d1
BLAKE2b-256 34d4c32d820dd911c8235deb8869419d85457fb2ac634cf3e85e790666b39f67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1477a4e09d604b811bf3551995588a850eab3aad6405f0c1c299995e0f17576c
MD5 b963a96e5960689746cdd612e04763cb
BLAKE2b-256 babef005d10d7f8c95dac7736f113bb0ad6a03fa18f1bc00ffcdbad953a16ad7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 21bb7908084144578fbfdaa54f26c11217dddfcb065d6ee045430ca7383c3d9d
MD5 7165b381687a197d939dedcca1ed8589
BLAKE2b-256 f210343147b6a5fa1b0c836def0521cca31628f4a52e34ae72928579e1b78a01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bb18caf82d61fceb1c25cb56635d25cdfcc7c4176c469b3d8e740afa4c847df5
MD5 c6452ce2d9732186d2c22939082cfece
BLAKE2b-256 ccec281684ce83dce9f3d7b7bd3a8dcbc53abf7b1469e1166947d184c8bbfd5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 519.2 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4124920847b886469b18da20bb1d6d3abd0d04063cb42d0c1b15fac5b26997b7
MD5 2c39311c4d5e8dbf926318a2ad5cdba3
BLAKE2b-256 f99214fa7dc0833711d499cb3ead369f438e6b31c5856c8ee0a0b31f39960e90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 387.9 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f721032ccb6aac926d166b42f5066704f9b3617e84049e52882efbfc64b3843d
MD5 aa3fdb213c8a874b8f2de7768975eae6
BLAKE2b-256 7bd54f18f3616a300d2059db5313925b2b8032dc612d385f767b0cf7cfeb56a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 292.7 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 9b92793b0283224d9669d14720504ed1ed2362a91e473120f3a383af4d91ea14
MD5 5bddeef62ea2f8a5b4b263f2882b1fdf
BLAKE2b-256 20351be359f5c2305179db1da4a0031c83a8b8bff9e375854cfb82cf229b1110

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 5.0 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a9221a7ec8f1de184a8e84c3be8e715bbbec18722208d1a4dc51af92d3cad218
MD5 883309ef5bca763fb68b932fd0dc0b28
BLAKE2b-256 4702f7570b896997e01bcf6986c03ce82b23b8e1562372997a07162be4c61c4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7c46cfe6f143f6bb0ca2deb15a1aba1a17409623f9a65ea21919871d3685ef26
MD5 48e474fb864b563fe5d7d9445d62db4f
BLAKE2b-256 2bf49f7f1feab2b72f3617bbb3e19d58aa1d3785b898f49fbf53f29e1c3dfaa3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.0 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 320cec80182c8fb7f7bb441e5b59824456def00f70fcc28701ed1082ae58c3ea
MD5 109130a1e9efe7079fc68d7c70ace0bc
BLAKE2b-256 f2244466e804f8f8ba9d0b8b57befb47afdd1d096df71daedf3bece5269ffafc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0d5c3b952924d94b4d13d57e8b92d1ca667e9e3c5daaf4d3eb618743b2e05726
MD5 b6a4be32baca5d562999ed7259e4cc2e
BLAKE2b-256 d48621dc42977ec4e7e3f5ecd8ab7f63a204c219119df13d901dc703f44dc999

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 504.5 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 27f6cbff369ab88d4c7fddb9a40d9a5c24190b39989ad7f7f37c217b9a1a5162
MD5 41c5120691aa876b0cc00a1520f5c7b0
BLAKE2b-256 91edb6a4b4a4ca55634291b5cb1c57c6515cba4fa571c8dc39a5121234346413

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.1 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aee1c584dc404598296be1986a6d94c17dd981a91105084033a071a34a93c76f
MD5 b532b297774332c67ba62a248c4831b7
BLAKE2b-256 4824adcbf2598e62cfee9becaf44bd63b1a88a66772631db856004eed35ea232

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.0 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 01d6108a95bf2cc8394d068d538a12ccb65b4ed4ad98e88819e88dec6ec92368
MD5 619077aec8b073825bf5dec6900044ac
BLAKE2b-256 fa76938b5fa898a5ff762a83aafbf2e57f01aa354be30452c1cb0d752865a9f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.1 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4f9411cd256abe5f3df61c9cdf57932358acb122a7fedd1fcbb147308cd47f5a
MD5 322ce72ba8f2a12619fccf3f1862c1c0
BLAKE2b-256 ec92abdd5a40076fc9a4d5a7534e0f66497811f6d9b8430b8ee4b323363b2f3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 3.0 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 39c453c71c2e45f12947ab9278a46709598199eff075667b7ff8fb8bafbbeb9e
MD5 a29d6c952916a0118d60781ab4055dda
BLAKE2b-256 99dc2190d4d46650bc76146684f0fcfb14c1c1269b249e7baaa401a06225d53c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 304.7 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 f4627bc59de50e02522d7573305b1f5b87b06f7687844cf98d8589aa50339988
MD5 d8f9363ab0110e0e04e6e40386d8fd80
BLAKE2b-256 4f3824ef616c804f727412106f829aba8408c014f059c8bee200f1cddd4b0ee3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 241.2 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 2bfdc0233ee3676cf9ef85b71e12d868244e78cac854ac6015b013a15591a9f5
MD5 d560c01b44d19e3f29d56b4772d8e14b
BLAKE2b-256 33c2dbb8ada37139317f254c4a2d619f084874881353d74940dedd06d747fe2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.1 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b7ad43ecb69c4a96dfad21e3c425e7473a40d7d2d15173f8c7491b3c4fa2135e
MD5 db7d0e11258aeb29c946e5781ca27197
BLAKE2b-256 9b185d33ec6fbff628ab899b1fdb6b30fac2de1deeea93c74e0b29d678e8d65d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.0 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8208b878ccaf868181892d392ce8f29d4611c69fe5db03ab88b61562de3f47cb
MD5 326565523b9882e41d22daf92abe4403
BLAKE2b-256 cab4929989fa4e35baab81bf7eaf99e28e65a0f0aa3fdf64c2ebea83fa5d5e4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.1 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 27754fc971c29a0c2efd797ace0a14cdfe14484e1a5a96e358d6faa825e57107
MD5 f7c0ee85b022037b998ff11e2139c96c
BLAKE2b-256 361741f11563c5a9c2475b489c8b5fc4c1673f8bfebaadad084c0ae4c666575e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 3.0 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a62dd49aa187dd0c1b59a3aaad2a8635a06cbaed9d5e6907a143e6f552b863d
MD5 4afc4f3c7cc9b7ea3b39701dc672b1ad
BLAKE2b-256 19302d3257bbc1e9dfbf39f11c3237cf6b59589cf50c09fdb94e3659cafaf845

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.1.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 396.4 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.58.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.1.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1f76b2b2a50e71225e2b51d26087d96e542ab9163cbb9f5653c186f1afbcded
MD5 1d5e10db1665e85722962c15f25c92fd
BLAKE2b-256 62aeab467d2f5fca2b1ac8c2db692614279f9fffcade7ff9f7154012399da46b

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