Skip to main content

rapid fuzzy string matching

Project description

RapidFuzz

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

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

DescriptionInstallationUsageLicense


Description

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

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

Requirements

Installation

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

with pip

RapidFuzz can be installed with pip the following way:

pip install rapidfuzz

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

:heavy_multiplication_x:   failure "ImportError: DLL load failed"

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

with conda

RapidFuzz can be installed with conda:

conda install -c conda-forge rapidfuzz

from git

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

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

Usage

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

Scorers

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

Simple Ratio

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

Partial Ratio

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

Token Sort Ratio

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

Token Set Ratio

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

Process

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

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

The full documentation of processors can be found here

Benchmark

I generated a list of 10000 strings with length 10, that is compared to a sample of 100 elements from this list:

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

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

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

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

scorer Benchmark

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

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

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

extractOne Benchmark

License

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

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rapidfuzz-1.0.1.tar.gz (73.2 kB view details)

Uploaded Source

Built Distributions

rapidfuzz-1.0.1-pp37-pypy37_pp73-win32.whl (129.4 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.0.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl (363.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (288.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.0.1-pp36-pypy36_pp73-win32.whl (129.4 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.0.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (363.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (288.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.0.1-pp27-pypy_73-win32.whl (93.9 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.0.1-pp27-pypy_73-manylinux2010_x86_64.whl (237.0 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.1-pp27-pypy_73-macosx_10_9_x86_64.whl (182.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.0.1-cp39-cp39-win_amd64.whl (207.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-1.0.1-cp39-cp39-win32.whl (128.6 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-1.0.1-cp39-cp39-manylinux2010_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.1-cp39-cp39-manylinux2010_i686.whl (6.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-1.0.1-cp39-cp39-manylinux1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.9

rapidfuzz-1.0.1-cp39-cp39-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.9

rapidfuzz-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl (340.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-1.0.1-cp38-cp38-win_amd64.whl (206.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-1.0.1-cp38-cp38-win32.whl (129.4 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-1.0.1-cp38-cp38-manylinux2010_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.1-cp38-cp38-manylinux2010_i686.whl (6.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-1.0.1-cp38-cp38-manylinux1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.8

rapidfuzz-1.0.1-cp38-cp38-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.8

rapidfuzz-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl (339.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-1.0.1-cp37-cp37m-win_amd64.whl (206.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-1.0.1-cp37-cp37m-win32.whl (129.3 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl (6.2 MB view details)

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

rapidfuzz-1.0.1-cp37-cp37m-manylinux2010_i686.whl (6.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-1.0.1-cp37-cp37m-manylinux1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.7m

rapidfuzz-1.0.1-cp37-cp37m-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.7m

rapidfuzz-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (339.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-1.0.1-cp36-cp36m-win_amd64.whl (206.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-1.0.1-cp36-cp36m-win32.whl (129.3 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl (6.2 MB view details)

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

rapidfuzz-1.0.1-cp36-cp36m-manylinux2010_i686.whl (6.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-1.0.1-cp36-cp36m-manylinux1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.6m

rapidfuzz-1.0.1-cp36-cp36m-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.6m

rapidfuzz-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl (339.1 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-1.0.1-cp35-cp35m-win_amd64.whl (206.8 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-1.0.1-cp35-cp35m-win32.whl (129.3 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl (6.2 MB view details)

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

rapidfuzz-1.0.1-cp35-cp35m-manylinux2010_i686.whl (6.0 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-1.0.1-cp35-cp35m-manylinux1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.5m

rapidfuzz-1.0.1-cp35-cp35m-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.5m

rapidfuzz-1.0.1-cp35-cp35m-macosx_10_9_x86_64.whl (335.5 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

rapidfuzz-1.0.1-cp27-cp27mu-manylinux2010_x86_64.whl (3.5 MB view details)

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

rapidfuzz-1.0.1-cp27-cp27mu-manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl (3.5 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-1.0.1-cp27-cp27mu-manylinux1_i686.whl (3.4 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-1.0.1-cp27-cp27m-win_amd64.whl (133.3 kB view details)

Uploaded CPython 2.7m Windows x86-64

rapidfuzz-1.0.1-cp27-cp27m-win32.whl (93.9 kB view details)

Uploaded CPython 2.7m Windows x86

rapidfuzz-1.0.1-cp27-cp27m-manylinux2010_x86_64.whl (3.5 MB view details)

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

rapidfuzz-1.0.1-cp27-cp27m-manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-1.0.1-cp27-cp27m-manylinux1_x86_64.whl (3.5 MB view details)

Uploaded CPython 2.7m

rapidfuzz-1.0.1-cp27-cp27m-manylinux1_i686.whl (3.4 MB view details)

Uploaded CPython 2.7m

rapidfuzz-1.0.1-cp27-cp27m-macosx_10_9_x86_64.whl (211.7 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1.tar.gz
  • Upload date:
  • Size: 73.2 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1.tar.gz
Algorithm Hash digest
SHA256 c345bac5a7c2c56e3ccb75b41e40c5b383a51104fc54c3d7c380bda5c72e6630
MD5 07e5ecbed5395670ca520a8817a49876
BLAKE2b-256 72f963a3251627511072655f0cdc45004e3a31e3ac64317b06a7d68f8e969b5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 129.4 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 a30b0e8fef68347f48c43a5170f72b25d96da6c7bb63a59cc641c4dc1a3b4001
MD5 79d002393b1773bc8d137451e1393ca7
BLAKE2b-256 a2b38ef36ef94b18bd6e704d29bd460610f6ac00749555c4ee1da1e9b069bc7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 363.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 30daa7ec9bb6b9a95b304b20fffe042d0bbcdb14ac99067eaab2cd8a53959c9f
MD5 d8008a82cae05142d9fa5b827bbd480b
BLAKE2b-256 ed4de1ad085feb746dc7d518464da6c0bfdd5fea25e9ea07ff318b9192948e1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 363.3 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 583db970125fcb0b45d3ec621f3ceb80422c6bc11f0995ce139404370b7021d3
MD5 23154c9ac76b3846aa1d7076139315c2
BLAKE2b-256 51703a8dd8f1184eeba626f6039854f0c6e787f63c3dbec465fb1befdc85a2b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 288.9 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b2aba38b3c40fe85c9905d4dc1b6482d9c33a63af94857090cce10ec2a424df
MD5 f5044a2357b04e62be4c7988ed34bbac
BLAKE2b-256 9393161d23e2b35ccfbcae7580fc0ec4404dd99f69deea2bfa6cfca58ec04f7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 129.4 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 abd5bef7b7575f4ff007925df368491c7e319d88c4041b37897076385c04424a
MD5 14f477a9cfad0b97778cf77b706631ef
BLAKE2b-256 0f0d356f68f2b91e83bbe751071c12d2cd60397091230575532bbfe77cde3421

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 363.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b973be79e2565601bdf7045716496216ef5266f94828484c45e5ee3810af98f1
MD5 b7730445674453e00eec44837019b456
BLAKE2b-256 6a53800c8d2647fdeb7f5f3b47246cf4fecde977e3a7f88c8d846aaa5e965a5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 363.3 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 446d417f2cc449b6487b64c909cecfe95143b84352139ff335816183e2a024d2
MD5 581a0edd54577932582c585a65e14063
BLAKE2b-256 3f25b393c6d5c1f6df20845a2a7039adf672a33b82ed92663544269496948328

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 288.9 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52b8eea5d3b4dacc72ce357aa0451ac5272ce857d8326f446f64174e93e1c73b
MD5 607c92e359e979baec9d5adab1ce059d
BLAKE2b-256 1d8f1c0225e5b992821927169c53427b8040dd580a709493e827e0ea8526b19b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.0.1-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 bfee6db08fcfaac1ddbbce94a08b51430159632c5a1e53a79d29524833a74e29
MD5 15696e921c78a637f2f693ad3e3badef
BLAKE2b-256 583e8150d55c15023d59eb5920b01cae6d6cb3f2c30ec63ecd2979498a9340e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 237.0 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bc36badd526dee65e184b5271b14024a7f545a3b0de0455823ebcbe7d9afd501
MD5 99109217111a9fb8f18ef27cc058e3b8
BLAKE2b-256 33c0a5baff0d436735ac88180ff8e11df8132229eef15bd15ef561aa0173c40b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 182.9 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a22f4da6bb8bf6c91eda3a06a68ff954d4455f13fd7a9a8a5b989da9295449ac
MD5 b699befe113bd78e2229b6fb96aec1a9
BLAKE2b-256 314ac5746d39730d8a77c104af18baade7fe020e34a186598c353adc8c534886

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 207.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1c97120069710afd044ff1e7c87c094b82133255a38f1c8e42eb6d41bbf12fee
MD5 8f69fee85c4858c04bfb4e97a1ffb4e6
BLAKE2b-256 ee62ab28bf8c48c86b093c5f35f4e6d010a0c6896251565bd91e883434e6a27f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 128.6 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d6ee6866c6d3a1771063b50879b17ab11ff0220e1e04589983894882bb8aa362
MD5 b0e5f461e8897a108a53578df5dbea73
BLAKE2b-256 79de278a5804ff62c403095c46e23c62d89f1fe7333d550e720909f7687a8a1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.2 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f5c8fc4bb448a38ddda022cec4f9045b1edeaa2ff77f5908d73300906e2be598
MD5 57c5b0beff313cc0a2fe6bc487694287
BLAKE2b-256 0eb5e3e8925c56cefafed43eb8900fda8c655f90fefb1886b09ed82044a2168f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 be8ec6590555c89d0bd7dde5060ac1a2c21851f94e6191f07aa4acfeefeb4f88
MD5 8531a3dd51f4117744e2acf8a5f0ac14
BLAKE2b-256 ac33aa8153977dfd213416a8be13f186dab2f9ebc4de859c5a5e80529c7b140f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.2 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4263ec3169b2743331f6111bd4b222f6ae70c5976b45076a65ccfc012fccf89d
MD5 6997e9e9e095d4f7ec902ae33e966c9e
BLAKE2b-256 240d08efd8df3a7baf9f58a557b451f59762da41305c999f345cd0826944176e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 6.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 75526e5b8fdb1ebf40f928f29683ae7725656f60dac98c8d7e70abdf6fb1fb0c
MD5 b17020df719b467c27fd085a959663b0
BLAKE2b-256 0d766154cf24ad146f7088330d3c041822c5f45670254001f2912c8c3ad8a2e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 340.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c7403d02d10a1d27cb0635666bbe5589907eb8928ce2cb6a75d91a53e6abfc9
MD5 990928673df04b14d682ec307cb48533
BLAKE2b-256 96e2e11bad59f6c20ee99753e52ebc03730763b64420bf41a4fcc4015e0f9d81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 206.8 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 86827c4a6043c2673f5a8eefc62a7be99c4f32b15b8a50a4d85399e3642ef478
MD5 83b99f977836f56ad7b726d9d3881743
BLAKE2b-256 0d15f0a25cbf6ad0fe4b397d98e19f6e10ccefc36ce5b76e6c39026824d1a9b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 129.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 254ff5f14aef9d69a216e98c69ffa1f0da42fb2557c0289b0a6b2fd8828844b3
MD5 80a8e9eb2a6a980751b11582e52f7c8b
BLAKE2b-256 aae142aa37e83e64ff85ff0802a0904ce59a805454690074104e2ef395b3941a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4f33baa841f5f0fc48b3d0ff674b7d2cc586ed0c2361615fc57b0e7ebae2a14a
MD5 52d480d4c94acc85cbb86b1a6aa2be0a
BLAKE2b-256 4fa13c90beeced0b9325437ec25351380d9ff50205048660baf6f519982cb9d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9ce8ce1d0fe6615239733ac132edd7d18663c30edfbfb4af8331dad4dc1de0f0
MD5 4252b0bb41333300d04c16d706c435a7
BLAKE2b-256 90410d66a5b33e2eb70690faccf6937fef2de3e0c3db0747f6b255d4f90f75d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 097a21c1f996ad50d7577a76fd1c7165f2f68e73b898bb2ef47b2e45b0bc9719
MD5 729c3e2e9a8940c6e6a826d8be38103d
BLAKE2b-256 fc92fe2ec80b7f9f0d488a13407805771d502ed83fa1eacec4d7aa3ee053732e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 6.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0c7d02a087d5e1c565577cd1b0087285b990455fda76000839462b1eaa91ee33
MD5 c0c0dc1b9eab9f291680ba5a2ee43f86
BLAKE2b-256 7b7987892423182feb77681ffc578a35865869d5185953550a57ed787505489d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 339.5 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 21ec782d25667f601f3d8e35ea270cac40e4a510119701c412409081316c3e71
MD5 ae66f9c0f8d2e32c8a577a2de9c74baf
BLAKE2b-256 975a3068be9b92a37af41bb5cbc033d7e60f6d6effa3e8d2627611dee983b5d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 206.8 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ba9e84104722375384dc8ab1fffbd2e001cf90cb6a2d07c925294b037b58f291
MD5 5183d7d94cf110bc12b4c7474a877415
BLAKE2b-256 9b6b346533e7169e35dbbad6e2adf8e08358dcd580dc03e9b4a3319e6d30adab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 129.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c9b97173a7ade9a58eb160300fcfc23a3e4a984edfcb7e463824488a363c45b5
MD5 28ddf8ad7746c31becfb0547e9188061
BLAKE2b-256 ce7e32d3980c075216c1c366f294416e1995e83999001bce3d2a2ad1de2cbce0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.2 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fbd3754cdd74fb7d73799901c3f9e076938aa2b661e1995eced4b156ca8a6491
MD5 dc2968ddcc09c5c7f0ee8aaf3a7785ea
BLAKE2b-256 d7fa460e10180aa4e38d650a358d1e7db352d41917698f8c302e8d463adf61ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.0 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 14d1658a907df7e426654883cc9bf9b557ba02ab4333972b8bb5d35cf1ce8598
MD5 622d48d72aaef71903febe7f30b4d699
BLAKE2b-256 25dff68f366caa82b04254e8eb7247b22fb2d750459e0465ae7c25ff7c32af61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.2 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e0344e9caa8ec49ec32469465d44d92320966e4430c6a902b09f85bd4afdec2e
MD5 958d1aad41fa21cd990afcc298f356fd
BLAKE2b-256 38bb094288d41fa2a42bcfc685a86a40f459716cc56ab9258c290a9787fa5545

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1af604da8246a698f5541a561da010928bb23c4671a2a01a1b475a188a31006
MD5 846722ab26df552ee29c34f198c2a5a9
BLAKE2b-256 a62cbbfdeadc721e6beab5fb8b4fd75d651239f1d067da59f3d16433d60bad43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 339.1 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53b42749cf1716a25a476e89d4bcbcd4c612f22de4bf54d111667ad2003bebe6
MD5 2bd1e21df9897d5b85a56499ef9ad315
BLAKE2b-256 021c09ed5d1676a34c19a1b9bdfdd4be61ca0536129c81927518fa76eb0f740a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 206.8 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d8275ec897959ef34d49504fd72526bffc85717613f190f94f75e45d8aa2d1d0
MD5 dbeb7dde6204f9b5676fe2883a4b70c7
BLAKE2b-256 a85fc534c5e47dc8e8a972ac4621cfd0a065db129b55395dff0af9a9ffa9acca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 129.3 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 caa1c86d7153df2da5228064d38889b2cd1f11550beb2684bba824532b7f16cb
MD5 5aea3e047464dcdf8a0128f555077de0
BLAKE2b-256 8ccc525ccc580fcabb5c1e6117c9f8f64f4e3ec732b1026486cafe3b26e53a80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.2 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 429a7b9372f4a3af259b9675f044492535738ebf61d527cfe5bc693e941c545d
MD5 87a994b53aa17693331d89dca0804191
BLAKE2b-256 5ea05792ab4a805287f88172e5186ae32cf4e5b99bbc3274e6ded19f352b38af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.0 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 970db88e0285154963dd431d7ca57a57d5e81ea07a5ce318e0dfd86f04d32438
MD5 6883451711a98831c5d7c757b88f8b22
BLAKE2b-256 f39411c381658ce0991f00d1ac17c00d368afa9534c65c658f0039d28f0ee76e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.2 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 876d88d47c559eb5e7e9c0b7aa283ea815101ef560f1be13134bbe15c4d9a127
MD5 ac9f00cbad56ebc1d394756f4c62e4c0
BLAKE2b-256 d404f18f82cfa3932d9006ca19fc12a25d92730f5341404a74b76d1ccc556a61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd70e53264f6136b949e669c5ea04ef587c416ace46dd65ab2bb8b39dcc7aad5
MD5 e39dec69ed799a1d6042a5a52755db6e
BLAKE2b-256 957393fb76340a9b35c7272c5b63ce29538f3b8e53e016b322b840c7a0564e4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 339.1 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95c757ff8408eda5f940c2bebc82ed22ea4f3d494699be0bd591d4fdc7a153e9
MD5 d9ddd2f110c32ff3870d6c7a668af092
BLAKE2b-256 31fc9bd3ae3f02b8a0e462e58d8aab4f03d4193e7d0c3b93fa6785ace100d584

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 206.8 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ede8012ec7661297cb7547afe574b4321920bb992cc15314883f764aedbb6331
MD5 144730c4a1d1757e17e5ff4b0f754e9b
BLAKE2b-256 0b535bf5ef5a66439fa9f095e108c85bdbe01bc9e0a7df3a728af0e151fd3e12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 129.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 5a95372f3e145f419ee0c9e6836863001f0bb85b350c366549cdc1322093d1ba
MD5 4e248f3c915e8a9cfd544ee82aa1f60f
BLAKE2b-256 ad5f64b3dc058268786e3bf096021d240de752e7ec2058ec9c76a08deb07ecdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.2 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eed51fc52242edeed08994d136aa19fc2bd7954b838d9d537406ab1e9a86a721
MD5 730191566d190b8df52bebb97ac8ed3e
BLAKE2b-256 82f527eed07661eecb690a828afeb815a8a18791ca6ca8d62fe0cbe459897572

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.0 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 86b9a6a62761110aeb3d7cb15bfd16040d5b6c1bf255179abf7889e205ed3a41
MD5 01e592c28098465574a7425ad2387114
BLAKE2b-256 589015ba8ce2626b1fd79876d047b1da9d83571d740ea88541b2709adf699a1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.2 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a9f647801e0b3c81ca2170eecf1698be8b1167e484bf62bd0cec9ca26897f865
MD5 5eb92b5381183933bc7489d9da08349f
BLAKE2b-256 2962a5cd90fc4041fed160287267a9a93c9261a49e926b37b6efc3222feed0ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 6.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 20730c88b3dc2a7c743438ce522370b1847cd9b24aacfbc812b3940dba9a5203
MD5 4c0ca7f240af1d2fc1ac5f53f7b06935
BLAKE2b-256 515cbe56f5b5f7b27236359b7a03dba9aacb6980e63c50a13e59f86814364155

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 335.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8587c91e913d06abda580072f7fbc6d5cd970ea46fd93d0e914f07f548d4a59f
MD5 8a16d2724881ccc9c778db47b1495951
BLAKE2b-256 e38d129bb0ac76820526e6515e96a4f75c4779a8222e8fcf1861d3379850a3dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.5 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 182ff7f4cecaf2d74d882ed7752c4759e0b87b04bcdefa52a6d16de8f4482077
MD5 592834d2661c24409857ae76530d56cd
BLAKE2b-256 2adb0c1192eca4b11ce14b730857c641e5c6285c5c9171aa0ed392eccb2cf97d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.4 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 87d1a5632260f4ac4b79eb780ce811cebac4b5fcf96a076ea5c9f3a68a9dc17c
MD5 bb3bef0f5fc0fb7ef2cf84eba8ec959f
BLAKE2b-256 9cc8f99d3b8c96239d177493677c519d8bcc45c0bf903ff2593c1169a86ed577

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.5 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 db3a18bdc82b0ff09d3eae59478a70d341f18a2bb27b866ab89a6e898a011150
MD5 c24e2e35d460c8da2c263426c9ed0bdc
BLAKE2b-256 3f8946d6c52c47144f9438e594f16c4c0f353e7a748142ff9b0bdd0f1e447fe2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp27-cp27mu-manylinux1_i686.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e19e2f30b71888ea3d91e026421c0f337f57fa0c6549003dcbfe68bb8d494dea
MD5 7e746d4aa2b34a543e17c8a5e147a1ea
BLAKE2b-256 cbab1ca9da0f76b49e5461fff79e79b57adb55858cc74e2886c15c2fd4166891

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 133.3 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 8b2c4729599dc9f9f4f960d443800bfc8e0cf15122cabbd1188ba3b9569277ad
MD5 7d34f25fb09e204455a380ac50b9287e
BLAKE2b-256 77a073efc6d22eadef4b5220f31a763c8835077c096600e5b25c9a516812113f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 93.9 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 6a44eb2d33ee16839b24032780e1b5bcb51a3e9689bb52c725d760be97e04e42
MD5 770247818b9a8da1c61ba04ad5f37432
BLAKE2b-256 92c162f261e67e0aff0bdaf6a7936dbe0e918c2d8d240f135522ce695be48c2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.5 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e660ef0fef04dc3cf9083788b9da44b56ebf8c6e74f1020060cc531eaa3ba406
MD5 b41459d17575d62f7154c719dbd76f90
BLAKE2b-256 b3b0a8784b516ad9df6548b29c98953216d854f619ec13fcec64557fc1dd8a4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.4 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 860606234d53e9b140adaf60b37e29f53d2878bb08d842e6079b82b97fbe42d1
MD5 87f8f19df563ecb1b759b9bb1cfa049e
BLAKE2b-256 c82168e28f066c961f9047fa1053d3e280200b1e052d0fd76b5c167169989c5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.5 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a6015d351d086e1176a37cff749d6a7e756e8c70484a826c6c04d25eca1884f7
MD5 74eac7ae154184f8202cd53993b38ae9
BLAKE2b-256 f86ea44d302777f86c447c84df5b167b347544a0ef56de0fdb3f49273d40d3c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp27-cp27m-manylinux1_i686.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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 859f7b1f42b3ca6bc4fb2ee4d3abf9cee610c5725466a0cf599c67a19bbff655
MD5 78744c8be79398be1d8b2ff169115a0f
BLAKE2b-256 0f7ee03e2d8cce965eeee3e822a66d17aab7a624eb1aac3f0d77eacbf73712d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 211.7 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.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 172cd2a2a94c0d73b89e20ee0e2452baa12cea1f87358b5c9cc7a37e9bfbb282
MD5 336996ed6f1254e680389cea99253b29
BLAKE2b-256 c7f16d70097e92709e845611925db9593aef3d7548caf57c5927d7d86f9531eb

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