Skip to main content

rapid fuzzy string matching

Project description

RapidFuzz

Rapid fuzzy string matching in Python and C++ using the Levenshtein Distance

Continous Integration PyPI package version Conda Version Python versions
Gitter chat Documentation GitHub license

DescriptionInstallationUsageLicense


Description

RapidFuzz is a fast string matching library for Python and C++, which is using the string similarity calculations from FuzzyWuzzy. However there are two aspects that set RapidFuzz apart from FuzzyWuzzy:

  1. It is MIT licensed so it can be used whichever License you might want to choose for your project, while you're forced to adopt the GPL license when using FuzzyWuzzy
  2. It is mostly written in C++ and on top of this comes with a lot of Algorithmic improvements to make string matching even faster, while still providing the same results. More details on these performance improvements in form of benchmarks can be found here

Requirements

Installation

There are several ways to install RapidFuzz, the recommended methods are to either use pip(the Python package manager) or conda (an open-source, cross-platform, package manager)

with pip

RapidFuzz can be installed with pip the following way:

pip install rapidfuzz

There are pre-built binaries (wheels) of RapidFuzz for MacOS (10.9 and later), Linux x86_64 and Windows. Wheels for armv6l (Raspberry Pi Zero) and armv7l (Raspberry Pi) are available on piwheels.

:heavy_multiplication_x:   failure "ImportError: DLL load failed"

If you run into this error on Windows the reason is most likely, that the Visual C++ 2019 redistributable is not installed, which is required to find C++ Libraries (The C++ 2019 version includes the 2015, 2017 and 2019 version).

with conda

RapidFuzz can be installed with conda:

conda install -c conda-forge rapidfuzz

from git

RapidFuzz can be installed directly from the source distribution by cloning the repository. This requires a C++14 capable compiler.

git clone https://github.com/maxbachmann/rapidfuzz.git
cd rapidfuzz
pip install .

Usage

Some simple functions are shown below. A complete documentation of all functions can be found here.

Scorers

Scorers in RapidFuzz can be found in the modules fuzz and string_metric.

Simple Ratio

> fuzz.ratio("this is a test", "this is a test!")
96.55171966552734

Partial Ratio

> fuzz.partial_ratio("this is a test", "this is a test!")
100.0

Token Sort Ratio

> fuzz.ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear")
90.90908813476562
> fuzz.token_sort_ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear")
100.0

Token Set Ratio

> fuzz.token_sort_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear")
83.8709716796875
> fuzz.token_set_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear")
100.0

Process

The process module makes it compare strings to lists of strings. This is generally more performant than using the scorers directly from Python. Here are some examples on the usage of processors in RapidFuzz:

> from rapidfuzz import process, fuzz
> choices = ["Atlanta Falcons", "New York Jets", "New York Giants", "Dallas Cowboys"]
> process.extract("new york jets", choices, scorer=fuzz.WRatio, limit=2)
[('New York Jets', 100, 1), ('New York Giants', 78.57142639160156, 2)]
> process.extractOne("cowboys", choices, scorer=fuzz.WRatio)
("Dallas Cowboys", 90, 3)

The full documentation of processors can be found here

Benchmark

The following benchmark gives a quick performance comparision between RapidFuzz and FuzzyWuzzy. More detailed benchmarks for the string metrics can be found in the documentation. For this simple comparision I generated a list of 10.000 strings with length 10, that is compared to a sample of 100 elements from this list:

words = [
  ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(10))
  for _ in range(10_000)
]
samples = words[::len(words) // 100]

The first benchmark compares the performance of the scorers in FuzzyWuzzy and RapidFuzz when they are used directly from Python in the following way:

for sample in samples:
  for word in words:
    scorer(sample, word)

The following graph shows how many elements are processed per second with each of the scorers. There are big performance differences between the different scorers. However each of the scorers is faster in RapidFuzz

scorer Benchmark

The second benchmark compares the performance when the scorers are used in combination with extractOne in the following way:

for sample in samples:
  extractOne(sample, word, scorer=scorer)

The following graph shows how many elements are processed per second with each of the scorers. In RapidFuzz the usage of scorers through processors like extractOne is a lot faster than directly using it. Thats why they should be used whenever possible.

extractOne Benchmark

License

RapidFuzz is licensed under the MIT license since I believe that everyone should be able to use it without being forced to adopt the GPL license. Thats why the library is based on an older version of fuzzywuzzy that was MIT licensed as well. This old version of fuzzywuzzy can be found here.

Project details


Release history Release notifications | RSS feed

This version

1.2.0

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

Uploaded Source

Built Distributions

rapidfuzz-1.2.0-pp37-pypy37_pp73-win32.whl (302.6 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.2.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (654.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (480.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.2.0-pp36-pypy36_pp73-win32.whl (302.6 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.2.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (654.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.2.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (480.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.2.0-pp27-pypy_73-win32.whl (255.6 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.2.0-pp27-pypy_73-manylinux2010_x86_64.whl (538.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.2.0-pp27-pypy_73-macosx_10_9_x86_64.whl (374.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.2.0-cp39-cp39-win_amd64.whl (402.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-1.2.0-cp39-cp39-win32.whl (311.2 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-1.2.0-cp39-cp39-manylinux2010_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.2.0-cp39-cp39-manylinux2010_i686.whl (5.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-1.2.0-cp39-cp39-manylinux1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.9

rapidfuzz-1.2.0-cp39-cp39-manylinux1_i686.whl (5.6 MB view details)

Uploaded CPython 3.9

rapidfuzz-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl (546.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-1.2.0-cp38-cp38-win_amd64.whl (402.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-1.2.0-cp38-cp38-win32.whl (311.4 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-1.2.0-cp38-cp38-manylinux2010_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.2.0-cp38-cp38-manylinux2010_i686.whl (5.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-1.2.0-cp38-cp38-manylinux1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.8

rapidfuzz-1.2.0-cp38-cp38-manylinux1_i686.whl (5.6 MB view details)

Uploaded CPython 3.8

rapidfuzz-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl (545.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-1.2.0-cp37-cp37m-win_amd64.whl (399.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-1.2.0-cp37-cp37m-win32.whl (309.9 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-1.2.0-cp37-cp37m-manylinux2010_x86_64.whl (5.7 MB view details)

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

rapidfuzz-1.2.0-cp37-cp37m-manylinux2010_i686.whl (5.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-1.2.0-cp37-cp37m-manylinux1_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.7m

rapidfuzz-1.2.0-cp37-cp37m-manylinux1_i686.whl (5.6 MB view details)

Uploaded CPython 3.7m

rapidfuzz-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (542.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-1.2.0-cp36-cp36m-win_amd64.whl (399.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-1.2.0-cp36-cp36m-win32.whl (309.8 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-1.2.0-cp36-cp36m-manylinux2010_x86_64.whl (5.7 MB view details)

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

rapidfuzz-1.2.0-cp36-cp36m-manylinux2010_i686.whl (5.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-1.2.0-cp36-cp36m-manylinux1_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.6m

rapidfuzz-1.2.0-cp36-cp36m-manylinux1_i686.whl (5.6 MB view details)

Uploaded CPython 3.6m

rapidfuzz-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (544.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-1.2.0-cp35-cp35m-win_amd64.whl (397.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-1.2.0-cp35-cp35m-win32.whl (307.3 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-1.2.0-cp35-cp35m-manylinux2010_x86_64.whl (5.7 MB view details)

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

rapidfuzz-1.2.0-cp35-cp35m-manylinux2010_i686.whl (5.5 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-1.2.0-cp35-cp35m-manylinux1_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.5m

rapidfuzz-1.2.0-cp35-cp35m-manylinux1_i686.whl (5.5 MB view details)

Uploaded CPython 3.5m

rapidfuzz-1.2.0-cp35-cp35m-macosx_10_9_x86_64.whl (528.9 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

rapidfuzz-1.2.0-cp27-cp27m-win_amd64.whl (315.1 kB view details)

Uploaded CPython 2.7m Windows x86-64

rapidfuzz-1.2.0-cp27-cp27m-win32.whl (261.2 kB view details)

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

rapidfuzz-1.2.0-cp27-cp27m-macosx_10_9_x86_64.whl (416.3 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0.tar.gz
  • Upload date:
  • Size: 266.0 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0.tar.gz
Algorithm Hash digest
SHA256 dd40e148a84293119564b7d6de38ea8d5963e1279fed39203eedaf4651575d27
MD5 2520efce50c32e55b36b98f317e3d40f
BLAKE2b-256 e17e0cd14a1257a727158891b05c49c05be09b1f4fdfc76374a775f91dba7eb1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 ba020afbc432278ead6cc2dda57cdf6a91e8238db1e14144fd491f23cfa5c6b2
MD5 b63214f6ee0f9a8b87fc56e356600273
BLAKE2b-256 1e69860ae3a2698cd8a6df375eba28aa8086643084f57c28fef4253ebd901676

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 27da8b4c4860a7a13ff49400dd40e5b88ac68e7036702952f418afa0c04e79a3
MD5 737f8c33d45916e6fb32b05006fb2b5d
BLAKE2b-256 604accbe584a0eaec6961f0eacb0df4e2140353522bd2fd32a64658331c4873d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bd93d13d8644ff3f7163e225257d97d866902069514fcb096f4938fd4e7c3e95
MD5 28912162797b14a9f6a2efa64f4b6016
BLAKE2b-256 649d69f6837f0370e45966299cd7026cfa7578974d460bb4f62db1037a1f2d5d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 59a1668a4d2a7c4262fd90254791d9453a7551f7e5708383c4b554631b90becf
MD5 af121ab2ce56070abc4473f76af03c00
BLAKE2b-256 f20e0d405e61d53badde63b442d08f18195695a3b9f6fe89cbde944924f3b8f9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 1fe8e25cddcb2c6656f42f1b5cc03a78d72b976f8a3844f9716978101e5ce780
MD5 c515c68912222f7039aa2a7aaa5a38a3
BLAKE2b-256 25634d9d83fdd7f58535c4bca00fa033c3623bffdc0255ac39f53da1ab9d762f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 303b427d4a48c7ac113e42573c987686f5d376fe4ea5105d4cb5acd61b8e521c
MD5 a4e8403aadd24611cd6f2cac7f3aaf35
BLAKE2b-256 800eb70aea9b6cfa70a89ee7efd60af65c2139029b7bd52b70b9267dadd154ed

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8b792221bd59ba1a4d551284b0f1c1800fa964b9e967fbbd2836aed768e0621f
MD5 3c09e0c5054bd562311f30ee8535ef64
BLAKE2b-256 dbb82f03abb7ae316aacacf870957f89e44a5d998a5c8da8386968f9a33824a8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d47c78bfbeaec1853329f0a768490cc0e6b3743b5b5a513cd3fa52efc9d64e7
MD5 4b5c77e03f25362def636988faa28cbc
BLAKE2b-256 2c2ddf58c14f72dc9e63a5d39b34385921eb0e6072852e52b52d1af3260dee38

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 865cb6d99bd6f8102283b59a6e42dfca300e2f555910e6a54cb4dea2f1b04483
MD5 a40915fbad5cb0e004d7181348246002
BLAKE2b-256 495ea20993d2cdd4bffe5251fe550b6470a5739379c46d35d9fedf58c5b99ad0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aec5df01a8e67b24b975249aee07490f05adb8c70bcbda879d29461fc7dcd76e
MD5 8c172df544afa098922e876651ed10cb
BLAKE2b-256 830e67674f677fb2a4a1afbff9f8f2d7534f5a8756b9a19da24ec654c3551d85

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a6360628d05bd4fb82d403908c517eeb5431bdafb22bb74a06dc998dca2cedf
MD5 8d9902c08a88247f0d267d8601f6956a
BLAKE2b-256 2e763e29c93219ca15f06290249b04aa7b99e79c4712ed1ac68370a2a9fd7c41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 402.0 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4277fa32c8d77c4e999c67453c973f687b8dbc9bde988cca4d83a14c56181d1d
MD5 c986246607e3fb3698095b2e633c99a0
BLAKE2b-256 d95f577700837904d65a604d7e3381b83959ead440666132b360c479c4acf498

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 311.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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c13fcbee501adde74dce91bb2f91e3c9749b9db004d141481d8ada3ffef1d8cd
MD5 5fc675584ae2b20aa45b0cc31eefcce3
BLAKE2b-256 428cffdb1deb9cd4a84771ff0557f7d4ca4e828ecb8c6447c0613cb4ec0d36fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 5.8 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e27d880297b2a9805f6df9029b8a46a057ce96b59064d91af3c87ba9cd5a5307
MD5 4c8b8caf434fbddcf8a3c496a37acebf
BLAKE2b-256 9d98d3ccf466c3305b8a7a069b11a91c4a3814bafea03724f8afdc2a213a2380

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 5.6 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 63f812554a9cc8c7f82218a8f71b9184be6d7cb1590e8bce237b882b6ce987c2
MD5 973d60d797579cda80a54e6f0d836559
BLAKE2b-256 24fe4ec3468a626e2e1eee313718335333d0fb909b75b69c1a417e230dcdf0a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.8 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 571b03e7988528783f37a18ead4dcf9c2a849b49f3813d7c83f3d055d0477735
MD5 ae3d719e40671f8cbe03fcd46948d8ad
BLAKE2b-256 44637bf1f872fc4d93348cf1a679ec9c66be68c9d89fd0060c4e8a80284a5e6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 5.6 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8fb9c023a55bfad0dc95cd25aa5c36dc0a5deb1eb435ecd269a956e257f7484
MD5 4167e4e4520c29fa44623dbb2f6f8f25
BLAKE2b-256 b246e68677eb286ebc169a484f31bc49d1aee5ca59301cf1c3cce5375d7b6245

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 546.8 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f5941c61bfeb52e335d759f17c6e79901bcd0598801c1f070587bebcbe609b5b
MD5 6a3764ecfcb8c43ad8b7e6646166af52
BLAKE2b-256 0d2d3707d1693fba0109f3ebf584bfe3352fb6e326a8d111b9a066bca3577f99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 402.2 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 456394ffee07cde4d4e42818d550bdc8c0467709b38de7e05f347689bd8101b7
MD5 6b5bf8d3927d47b361072d9a9570cb6e
BLAKE2b-256 0e9068e49b83ba606633388dfc58c927de10d9fffd2a0d1c9628b1cb52f7bf14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 311.4 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9340d2481337e907b2d7e6863fff6b7f0a10316caa080e50e3c5af9ee9c42c3b
MD5 4c047b99dc5a6f56a4b152ed4011ceea
BLAKE2b-256 38028cf6fdc212c710369afd0841c28ffaaf79a0598119df937e9fe3657d7c2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 5.8 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 39111cf319840f763135a88462a2e6c6f86e4a20eaca75152d94991a2bcec825
MD5 4eee95bc6cd7702a9c1fe14268d87870
BLAKE2b-256 45ac51129cb4a0f8b80a98b5f4d32a43e10f69702009456df9a0f220a55d3a2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 5.6 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f70e5e5f9ebeddf66f8503bb9d9864e50fb4606ab1cdf9d0b1d4e5b56201b543
MD5 99cf4f470682fe7630c5a0cdedd6bbca
BLAKE2b-256 33863b090d2449acd9a32c0ec0b43ba236f83468b791f000dd54421922aa7323

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.8 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e3d3d3e7c1a1a99d9ad056342c17bd4c967634de6bec6f92399374c8be9c95bb
MD5 c455219f95b64854428a4b3d4898bbb3
BLAKE2b-256 5083d88002f81e73f335518bb604f34ee454b3c79c0ce56d5a8d320dd9a7ba83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 5.6 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ec92909d9cb22e68a255cec1696bbe3cd4d1cb6d2d0583370a8719371d53833
MD5 94b264cfbbedb5ab88c6498368721e25
BLAKE2b-256 3aeea0d0c6c6ae06d9cb80f97ebb91f5d30662583fd540ed3d93eb17ec6d1a6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 545.7 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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5458c8788b138fb87289e26415f1c3a113169dbaab2d6421bfec257e0f6dc104
MD5 38a3bb7aa638419d8fc6723f84b5e677
BLAKE2b-256 9cadc8e20885965f7f036cd98ba23c14af46bb6f420e0eee05f1c20b129a5650

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 442521bc37f546ec9854191c2aa400119d3d43254f4e8c022b12b27a53d4e827
MD5 183183fc689ec98e502a77b6aa2170e4
BLAKE2b-256 28027148842b648e70b8610bc1139aba784c442afa88ff206cf148516974bfc5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7307ea29322345fbd3201c6671f026e68b0536975de7f269084a2a87fa93a873
MD5 d2ac2f59648a2bf3d7310775b87ee6ef
BLAKE2b-256 c1c6aa2e0578ca2488c7004c0d2daf298ccce9910e2fe1ecf42ddd366fbf904a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4aab8bc309383229f4e4e794ceb6a0c8dce3bcc4a546e0ca7bfc0bb9f253d5a1
MD5 c529e09a73b17fe23f9dd2edd2d9af96
BLAKE2b-256 18aeffe48713e5208e66c96f503cdf20be0337d89b68ed548cd704a904c4e597

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 20d720eaf7317176e93b5f5c15200110dc748ff882db6e077253b67c128239ee
MD5 173e4290539cd99089408f8028e6752d
BLAKE2b-256 3ab43b67492bd6f8e49a663ae92347e32a10055565068ff3165b906b26ce4612

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 209fbc7838f19fbaad1071cd46246dc398dcd99afa290271ccb43c1b3d98ef15
MD5 1a9cca7aa9175e9de0b4483c20fafe4b
BLAKE2b-256 8cb01890023d44c58312bf1aeff76fc374ceab40e48df6d33f20402853bfefb7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 642ab993263bc92506adaf5b641f3e6a87fbdea7b4b5dd805bbdecc74d07cdeb
MD5 3ab5f736ea540fc465e897aaeec95420
BLAKE2b-256 57a6f3eb7f2aa06fad7ab3f72b1811c1f9174763bdcc115758295253dd00f6cd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 542d6a78259ed50aa0508b714fb4b13b7fdc741af08b80a072730370fe8ea1ea
MD5 2e340e9187f4ffd2763e82e59b8736ce
BLAKE2b-256 5d65d1b9152fac24df408715eb2164ee73772438660ad03e32ccffabcfe36d84

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8947a429566c8413eaa3f3c505d510f00c24385852c648c4729e5e3982728ee7
MD5 44cef6dc35df5765ddd07b7a07dc48ea
BLAKE2b-256 89fc6a58a8f99f224e38eb0d8c331597b525ccaa14c88383217eda10415827a9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0f7bcb4dcaf0e6edcbd31ee0930e5a8e0acbd053102078ea72a75627c1f7ccf6
MD5 eadbc41e3b9b1e6d1a640b00ecbecd55
BLAKE2b-256 07272e354ad46a825069acc12160eeaa91bab78a500505b163160c0feabf6325

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 399ba7054d29811183d2b7564278e9b07edf6fc90adec1e1207ba894e169eb25
MD5 683ac3c1f374816b7460cc05db8858e5
BLAKE2b-256 5b71a695f58b9336a8137b2c464a5136ef976dce1466f6311aed82aea16f4610

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 98ef46145f5045cebcfa0d9d8a6ce68c77002827bf019da6fb38c6c94362e54f
MD5 4e1659465706f345cd93765e0b6b84da
BLAKE2b-256 c50ed4720da87301240df3ca09689d21eb834f9a8601e9b7dbc32330fc5e8441

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9d181a7648c8fa63a21758b136ad9b806f06a77f17e427da6a3e9bcb977cb579
MD5 10781dc59160a138b10fbac7ffca58e7
BLAKE2b-256 7cd8cef17286de1d9bb181fc8fb6ea0fd08204978be580a0c37283ba98cc30d6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7632176bd59c61a6035912839fd90db0b2d26f1f0137cf68c450eada3db66e30
MD5 92cf4a1bd3d309e0c0bd4d7d4c1c6ef7
BLAKE2b-256 54825a55b5ce187595d71b6574eb32643d1114d3bf03171528d52b75d34361d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2f50cd07d28d81c39af594f50bd3ed8fb0bf37b737d63ba421207354dfa430ff
MD5 484e67a6e273d4360ee6ce87243afcd9
BLAKE2b-256 72fd8e239f6a1d2be1c0e0fbfeb4ff6322984d88c66d8a0c06a0abd85d85854a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 43b501fd8d364eb8c88bb54f15c6e250fe8ff4d4cb717826aa75a302dcce6cbb
MD5 adc4177c139574137e4d90c2c3dd8735
BLAKE2b-256 0246beb1ebdc6dfb01a4f1188dc4651d6fda7086513f8a5ac5f2b9d77a52feb2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 0dabfbba8765b49034546916a116fe8e9f2cf6162965ed35a865cede4c135c4c
MD5 cb10b845697ef68e5095834904ecd504
BLAKE2b-256 dbcd70f6a869c3a66e2618dbb059f3d2d9ccb1f203eb72a1fb96f22f3c6eef6e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 234fe6a27f846a7900cabe9b739e9dc12552162f185b9901be41037e0b6d2e4e
MD5 cf059cb15f29d78cd8112462562a9518
BLAKE2b-256 45e359650aba60445fa9cd08f31eecefb224a3626575d8ea3eab06510cb8d94c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3add93fc0a33a09596cdff3cb229f7db2c657633e2133d53e411c3664dd8df39
MD5 53ee2595ebe458ea4cd5f446f5938b90
BLAKE2b-256 495d6d0c625723e209c0d04edf028a8baa7baadd6d643e96e14163419595a29a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 02e7e1faef4310257b2433f67c58a2c0ecf3bfd1d81b80d98fa1a27cb6bd80ad
MD5 a5e57560c157ca31fdc6fa575715a494
BLAKE2b-256 aebe2c86c0bd6c0452c32769efed5347150413bbbdb2dad9e2f4a46172bedfbe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 57a2507c656104d8fa6a2bb17f15b7404dd9e5a8976cf06c904ca5805eda7644
MD5 81661fc343f47b4cf2236a718d32adff
BLAKE2b-256 6b976bab77318662c6a45263aa36e7513bf166f0beae10a3c27a8215ee41c5b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 379bb6c1327744fc1f26e8ba85e524f0112b91c40798b63b749d580568132a03
MD5 ac3a8701394f0d1376d17121341bcc4e
BLAKE2b-256 9f292cbc2dd01545e4a43c89fab5acc6376f2f2a76b2b38cb0b50b7852860f76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7ea50a57670be77e5d1090ec43358861336c5b46c657653c2a999ffc7a5d7009
MD5 8d885a26b3e730eca653201a08068aca
BLAKE2b-256 b7f21827495fd9d3e018f17db0f51cc3eba91777a79e5fe55bc7637200add8f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e943cb2977e9e1d14ad39818b676dc674f60669e731ac3aeb7b5cfc9acc1410d
MD5 f5e818cd982c7e28d2a08ae047442b2c
BLAKE2b-256 68e6c3af6c7d9cec7a9bf38a838f7fd4e1d41acf5684129727309026ff4d464f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ed36b111b042a875f75a535f5780ab084b415db1339832d1034a6545031ab898
MD5 4b5c32e1521114bf70f487415de0d9d9
BLAKE2b-256 080135ddeacd01c69cf4618da6687403b770bf897b8fd980af67d059ceedb4d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 61214d0b8ad031ca6bc48d6b40b9c2578a781397fb9060c1626a73be131b54b3
MD5 482482a13f2eabad619a3ed29755e97d
BLAKE2b-256 1162c7f88e10d6a90ea2bc93e8379689ef673c7399367a18891cf12bdb2a0316

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 01e27f7c53830e0c454110d476068782b1554dcb598bf4c59f9ea1bfee96a36b
MD5 bf0940509c39bdf496a8e44d735a6554
BLAKE2b-256 820299e7a2a5f432aac30c5c3ae47bb91a95d3f07dcbf1524c2c699b43527cc0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 c4c8ed636ab5e880627952798f1c8a91d9af8026d39db4751c6a9786e554d79d
MD5 58689870b47a411526ac7e4717f108a6
BLAKE2b-256 7a286ddae397d9bc9f3d8a3715e896b04c012ee178d33d0b83d5851371f83ed1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dd0884d6811dee37465b5b1114733dbd19139463a727d747ea9ccded52db4595
MD5 c42e6ff05d8e4eea4f2d79c9da3964da
BLAKE2b-256 c74367b4aa48de82944337cba6c257fcebf627a0925cfbda3d13144fc17b055e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bc9255d25fc4e6bd5718afee00798136f265303054f0222be08f7c7faaf5ef8d
MD5 4cba321dc813323546ef9d495effcf0a
BLAKE2b-256 adddec9c55012c992b165c2b62de95bb8fc6cf6145e58fddcad44d111b372fe9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 76392b50972dacc8d66bda3eabb220079fe7adb9b3bf665a08f10888dba3f29a
MD5 00f0ea0f29a6babf489a78ea3f738936
BLAKE2b-256 9cea36094faa2e56483a752e50641dbd9816313ee59a94f273fc65f3c40536a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.2.0-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.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.2.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d51c3a3d499815171754c70cabc5047ee885bf253e2971071bd6340724d8f44
MD5 807b2cd3f72d50101218dc844e212be4
BLAKE2b-256 6c2a359bddc75ad6f568a244437846865d5575608723ee548806dd8039cb0a5e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.2.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eea6c39a093726b0d33a4ea7c4e2bbf979a67bc37f1acf1b7358574cbe478160
MD5 e1cf9eca2d95737974d124f6cd7cf6bb
BLAKE2b-256 afdfd8f6e6242ee161629660b0fd38059514180dd4007c8f2a90f9b8f6e8461d

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