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

Benchmark Scorer

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.

Benchmark extractOne

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

Uploaded Source

Built Distributions

rapidfuzz-1.4.1-pp37-pypy37_pp73-win32.whl (325.7 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.4.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl (718.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.4.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (516.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.4.1-pp36-pypy36_pp73-win32.whl (325.7 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.4.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (718.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.4.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (516.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.4.1-cp39-cp39-win_amd64.whl (430.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-1.4.1-cp39-cp39-win32.whl (336.3 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-1.4.1-cp39-cp39-manylinux2014_s390x.whl (717.0 kB view details)

Uploaded CPython 3.9

rapidfuzz-1.4.1-cp39-cp39-manylinux2014_ppc64le.whl (725.3 kB view details)

Uploaded CPython 3.9

rapidfuzz-1.4.1-cp39-cp39-manylinux2014_aarch64.whl (648.5 kB view details)

Uploaded CPython 3.9

rapidfuzz-1.4.1-cp39-cp39-manylinux2010_x86_64.whl (747.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.4.1-cp39-cp39-manylinux2010_i686.whl (759.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-1.4.1-cp39-cp39-manylinux1_x86_64.whl (747.4 kB view details)

Uploaded CPython 3.9

rapidfuzz-1.4.1-cp39-cp39-manylinux1_i686.whl (759.9 kB view details)

Uploaded CPython 3.9

rapidfuzz-1.4.1-cp39-cp39-macosx_11_0_arm64.whl (429.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rapidfuzz-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl (546.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-1.4.1-cp39-cp39-macosx_10_9_universal2.whl (969.6 kB view details)

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

rapidfuzz-1.4.1-cp38-cp38-win_amd64.whl (430.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-1.4.1-cp38-cp38-win32.whl (336.5 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-1.4.1-cp38-cp38-manylinux2014_s390x.whl (714.3 kB view details)

Uploaded CPython 3.8

rapidfuzz-1.4.1-cp38-cp38-manylinux2014_ppc64le.whl (724.6 kB view details)

Uploaded CPython 3.8

rapidfuzz-1.4.1-cp38-cp38-manylinux2014_aarch64.whl (649.7 kB view details)

Uploaded CPython 3.8

rapidfuzz-1.4.1-cp38-cp38-manylinux2010_x86_64.whl (748.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.4.1-cp38-cp38-manylinux2010_i686.whl (757.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-1.4.1-cp38-cp38-manylinux1_x86_64.whl (748.6 kB view details)

Uploaded CPython 3.8

rapidfuzz-1.4.1-cp38-cp38-manylinux1_i686.whl (757.8 kB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-1.4.1-cp37-cp37m-win_amd64.whl (434.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-1.4.1-cp37-cp37m-win32.whl (340.8 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-1.4.1-cp37-cp37m-manylinux2014_s390x.whl (716.2 kB view details)

Uploaded CPython 3.7m

rapidfuzz-1.4.1-cp37-cp37m-manylinux2014_ppc64le.whl (728.1 kB view details)

Uploaded CPython 3.7m

rapidfuzz-1.4.1-cp37-cp37m-manylinux2014_aarch64.whl (653.8 kB view details)

Uploaded CPython 3.7m

rapidfuzz-1.4.1-cp37-cp37m-manylinux2010_x86_64.whl (749.7 kB view details)

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

rapidfuzz-1.4.1-cp37-cp37m-manylinux2010_i686.whl (758.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-1.4.1-cp37-cp37m-manylinux1_x86_64.whl (749.7 kB view details)

Uploaded CPython 3.7m

rapidfuzz-1.4.1-cp37-cp37m-manylinux1_i686.whl (758.8 kB view details)

Uploaded CPython 3.7m

rapidfuzz-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl (547.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-1.4.1-cp36-cp36m-win_amd64.whl (429.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-1.4.1-cp36-cp36m-win32.whl (335.7 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-1.4.1-cp36-cp36m-manylinux2014_s390x.whl (699.9 kB view details)

Uploaded CPython 3.6m

rapidfuzz-1.4.1-cp36-cp36m-manylinux2014_ppc64le.whl (712.2 kB view details)

Uploaded CPython 3.6m

rapidfuzz-1.4.1-cp36-cp36m-manylinux2014_aarch64.whl (636.7 kB view details)

Uploaded CPython 3.6m

rapidfuzz-1.4.1-cp36-cp36m-manylinux2010_x86_64.whl (744.8 kB view details)

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

rapidfuzz-1.4.1-cp36-cp36m-manylinux2010_i686.whl (750.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-1.4.1-cp36-cp36m-manylinux1_x86_64.whl (744.8 kB view details)

Uploaded CPython 3.6m

rapidfuzz-1.4.1-cp36-cp36m-manylinux1_i686.whl (750.9 kB view details)

Uploaded CPython 3.6m

rapidfuzz-1.4.1-cp36-cp36m-macosx_10_9_x86_64.whl (542.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-1.4.1-cp35-cp35m-win_amd64.whl (426.2 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-1.4.1-cp35-cp35m-win32.whl (332.9 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-1.4.1-cp35-cp35m-manylinux2014_s390x.whl (698.4 kB view details)

Uploaded CPython 3.5m

rapidfuzz-1.4.1-cp35-cp35m-manylinux2014_ppc64le.whl (709.7 kB view details)

Uploaded CPython 3.5m

rapidfuzz-1.4.1-cp35-cp35m-manylinux2014_aarch64.whl (633.6 kB view details)

Uploaded CPython 3.5m

rapidfuzz-1.4.1-cp35-cp35m-manylinux2010_x86_64.whl (740.8 kB view details)

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

rapidfuzz-1.4.1-cp35-cp35m-manylinux2010_i686.whl (746.1 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-1.4.1-cp35-cp35m-manylinux1_x86_64.whl (740.8 kB view details)

Uploaded CPython 3.5m

rapidfuzz-1.4.1-cp35-cp35m-manylinux1_i686.whl (746.1 kB view details)

Uploaded CPython 3.5m

rapidfuzz-1.4.1-cp35-cp35m-macosx_10_9_x86_64.whl (529.0 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1.tar.gz
Algorithm Hash digest
SHA256 de20550178376d21bfe1b34a7dc42ab107bb282ef82069cf6dfe2805a0029e26
MD5 622851007e89109984bbba5e7f7cd71f
BLAKE2b-256 2f86cc342a061f0ae579b31376f23afd737a4a7cf34dfa9199859646cb4a941b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 4364db793ed4b439f9dd28a335bee14e2a828283d3b93c2d2686cc645eeafdd5
MD5 e4979034c7c23cf2b62dbc7df419e316
BLAKE2b-256 830000c8550af36c15399d0209d7a28cc1b43898c833de29a7eb2397374d22b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f8c79cd11b4778d387366a59aa747f5268433f9d68be37b00d16f4fb08fdf850
MD5 27b1a5df98f8eddf88b031d591b75eb6
BLAKE2b-256 2d70ad4ef685b3ab4c60f8470f17eb0a794929144475efe17f16fca1f1c695c1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a89d11f3b5da35fdf3e839186203b9367d56e2be792e8dccb098f47634ec6eb9
MD5 fa2044595121a654577096c5be3135f9
BLAKE2b-256 3c9819c201295f6cd7819af15b2df71016275b98942b752456ca3c39c5b4f1c8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2278001924031d9d75f821bff2c5fef565c8376f252562e04d8eec8857475c36
MD5 ab14a31535a86e0301c10a8493b4acde
BLAKE2b-256 8794b6a03434b8227d2522117f934ec833266612cd9c1ddcf47976011661d8c4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 bb16a10b40f5bd3c645f7748fbd36f49699a03f550c010a2c665905cc8937de8
MD5 dae9f18b06a78eaac9247450e9305677
BLAKE2b-256 d60761354d20f3ea838e6aa5f83f2f37d8e125081ad21dd20129be003bfa9229

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c798c5b87efe8a7e63f408e07ff3bc03ba8b94f4498a89b48eaab3a9f439d52c
MD5 dd95a130efcc9d0170e5bee069aa1785
BLAKE2b-256 be2e64a5557e342258a35612f30bd64395071111dc7ef6be5102f44dc761c461

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6e336cfd8103b0b38e107e01502e9d6bf7c7f04e49b970fb11a4bf6c7a932b94
MD5 3cecef8c5f4903d37e6deed9db8fcd41
BLAKE2b-256 d93dae16d42e80f7b006968881bce3ae90ac2a3436a076b451a8154d3078acb0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4fa195ea9ca35bacfa2a4319c6d4ab03aa6a283ad2089b70d2dfa0f6a7d9c1bc
MD5 c54888fa0c3cad9eacef784c1e8f5fe0
BLAKE2b-256 0552ef7a7efb76194032042339e0e03aa539102e0828ed81fd98946b81dc03cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5208ce1b1989a10e6fc5b5ef5d0bb7d1ffe5408838f3106abde241aff4dab08c
MD5 eb6141ff078385c2a810aed186398145
BLAKE2b-256 ef89d58ef781293601e3821993cd38c4064e77466521b115c2832d0dc38a078d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0ec346f271e96c485716c091c8b0b78ba52da33f7c6ebb52a349d64094566c2d
MD5 9fdea00a691ac7ff532c2ac3e74ade60
BLAKE2b-256 d25282e64ca626553c046178f75aead3830096a0df7c06f574e129b9f3bae80c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c13cd1e840aa93639ac1d131fbfa740a609fd20dfc2a462d5cd7bce747a2398d
MD5 33d64da58a6310d43573c60d129d69a4
BLAKE2b-256 b1e5b6a1249a091fd027b5335576a3b18e7663ffc6cdadfce7fdb828fde0c03a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f37f80c1541d6e0a30547261900086b8c0bac519ebc12c9cd6b61a9a43a7e195
MD5 51ece09028d1cc1366a27d19cb1eac7d
BLAKE2b-256 953c6177703448e4dd871d84b738027ab69d0d1c63967b78149e70676caa8bc7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8cb5c2502ff06028a1468bdf61323b53cc3a37f54b5d62d62c5371795b81086a
MD5 0a9bda83030bd76ebc95dee3a5ec4bf9
BLAKE2b-256 fc467ab732606db297525161f6a46c1cb32249f6061d42fea1bd926947aac477

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bf18614f87fe3bfff783f0a3d0fad0eb59c92391e52555976e55570a651d2330
MD5 13e4ce3e229841ac7ba1d4ef593ac11b
BLAKE2b-256 4c2c230893014306d1cf99456cf1f488909ef21b3adb811ed2c13a7631b71e5d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 26b7f48b3ddd9d97cf8482a88f0f6cba47ac13ff16e63386ea7ce06178174770
MD5 c4138473cbe193ba070610285fd95d42
BLAKE2b-256 532c1705b3eb99003196bf7663e9cf660729c2cdb6f2faea45654314548fc379

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f2033e3d61d1e498f618123b54dc7436d50510b0d18fd678d867720e8d7b2f23
MD5 801990fe0e7a81722b7d2809088a7303
BLAKE2b-256 58bae076cad6cc5ca6d2fd653cdcb97f85405c83998025a2b45e81900b75bc2f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2cccc84e1f0c6217747c09cafe93164e57d3644e18a334845a2dfbdd2073cd2c
MD5 abbcc9e6be86f4c858b917f44c65cec3
BLAKE2b-256 399a31fff60e6590e188fc8f68479fb0603af3160de900f4b7d4dea7b2e208cb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c200bd813bbd3b146ba0fd284a9ad314bbad9d95ed542813273bdb9d0ee4e796
MD5 bb4a3ebfbed497fa173a7f9003ffd4d1
BLAKE2b-256 7cc3c0e8a12751ef9f845ce26640eb85382aa8493e31aaf4803dcd25b683b393

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa4c8b6fc7e93e3a3fb9be9566f1fe7ef920735eadcee248a0d70f3ca8941341
MD5 1d2c78673280ab5c00eec0579fc78d4c
BLAKE2b-256 1a1ded989c0cef8f0cf62de3383b205571724bd3434a241577068f3380485abd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c07f301fd549b266410654850c6918318d7dcde8201350e9ac0819f0542cf147
MD5 c4b2ea563040a9e69f5db7b844e40235
BLAKE2b-256 92dc06e4882550ddf69e949e3be3f8569f226b574e7db3e1247712a7721f88f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2963f356c70b710dc6337b012ec976ce2fc2b81c2a9918a686838fead6eb4e1d
MD5 9918f808f448398f3022604e0a9045f4
BLAKE2b-256 6e4e85f47797a2ecdff0c055e324af8cfd889ce23eec52ebbd24c7943e49a916

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 62c1f4ac20c8019ce8d481fb27235306ef3912a8d0b9a60b17905699f43ff072
MD5 de91a6bce30a693ecd099e1faa73a17e
BLAKE2b-256 69030b15fc1e3f73b60820a5005b07a6b272a8df74bdfb2130ab676add5770bf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c43ddb354abd00e56f024ce80affb3023fa23206239bb81916d5877cba7f2d1e
MD5 39e47f22e9a3527414b5060fceb8586d
BLAKE2b-256 4bd0a80d8c35abaca5f84acf01662e7655a533d002ce9705b1842f56c4fc1dc6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f22bf7ba6eddd59764457f74c637ab5c3ed976c5fcfaf827e1d320cc0478e12b
MD5 a246cb00e2e5c79bce1def3b6e0f0ecc
BLAKE2b-256 0155cbf71dda4353c4eb408c0b894594f3bd5205f8f7fd795198181147ab453a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31e99216e2a04aec4f281d472b28a683921f1f669a429cf605d11526623eaeed
MD5 84d93600fc6f87c6432f62997caae7eb
BLAKE2b-256 a28b863764ec946f17243fd30fd2cc0835f9f4cd3d2de7d3528b2a798dc7f2b4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 27f9eef48e212d73e78f0f5ceedc62180b68f6a25fa0752d2ccfaedc3a840bec
MD5 902cfea105756edf98d119527773b946
BLAKE2b-256 a43e48c154dd9f559fdc291465b62ce5df900e6d0b5e84ee267f100d3f70efc1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f35c8a4c690447fd335bfd77df4da42dfea37cfa06a8ecbf22543d86dc720e12
MD5 c0e0008b539cac49831cf2de55b46b79
BLAKE2b-256 80260d9ead8bebd39f6fcb8b08cc238521588bb3525c3f008135c35773a89a8d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5fa8570720b0fdfc52f24f5663d66c52ea88ba19cb8b1ff6a39a8bc0b925b33b
MD5 df9dddd3317943915bf730963e42ab4b
BLAKE2b-256 bf2cbf5f56e1d79e0fbe978025baa6ac1bf1d79a0c53d630fd0ac6277937af48

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ba8f7cbd8fdbd3ae115f4484888f3cb94bc2ac7cbd4eb1ca95a3d4f874261ff8
MD5 6d1d5d3602061a4f4901446d513e319a
BLAKE2b-256 4ded86ae8a839a4829137e9dc6e7b7640b5f53948754fd6c71d03da52a308a32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.4.1-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.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for rapidfuzz-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80b375098658bb3db14215a975d354f6573d3943ac2ae0c4627c7760d57ce075
MD5 504f6039520d451e386c4f40b750d4b4
BLAKE2b-256 dcb80f3339d9593e1184cea3307cb45230b90fddbe3e2c342522f8f3005a5785

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 506d50a066451502ee2f8bf016bc3ba3e3b04eede7a4059d7956248e2dd96179
MD5 011acef6986826b20215ebec805c693a
BLAKE2b-256 e8b849cd00c2239a507af0f7732b6aa8ef133ce9111f77618b37cfbd6251f955

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3c94b6d3513c693f253ff762112cc4580d3bd377e4abacb96af31a3d606fbe14
MD5 347743a76af82c58fb02cbc9a66acaf6
BLAKE2b-256 95e4f19ba0e4a8d87fca228d4a28201a990b207474fdc5297bba095368316614

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c28be57c9bc47b3d7f484340fab1bec8ed4393dee1090892c2774a4584435eb8
MD5 2af8273b7877c4acfb5aaed2187f70bb
BLAKE2b-256 f194d6a34a1f60cc9d76af72efb935740552aef6de3b03ba7f05d50593e2770b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 645cfb9456229f0bd5752b3eda69f221d825fbb8cbb8855433516bc185111506
MD5 1c055771af21a5327f0465bb59518686
BLAKE2b-256 d475febed6af4d07fcc35379cb096f515f35bef28300a6f97fb18195bf068ec6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61167f989415e701ac379de247e6b0a21ea62afc86c54d8a79f485b4f0173c02
MD5 2ae9254787c9af6186f3e0124bc51694
BLAKE2b-256 8216bf3e6f6ac0b5552823d0167486d1fb7971a44f6fb7c48bcc831643673b1a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f76c965f15861ec4d39e904bd65b84a39121334439ac17bfb8b900d1e6779a93
MD5 6a3ce9f86d5cbd4a4608d9ae956200f0
BLAKE2b-256 7db1af677055e9d6a38c884c2ed809a820de68ec2627ad2fcb4b3b9706f97131

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d7881965e428cf6fe248d6e702e6d5857da02278ab9b21313bee717c080e443e
MD5 f5438d977a82c0e067c4bec576cb9bf0
BLAKE2b-256 e5aabe46fcecb504c794b2cf630187370ace5d1b92658f717081304b02f79bb9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1d20311da611c8f4638a09e2bc5e04b327bae010cb265ef9628d9c13c6d5da7b
MD5 7d361152d1b77b7ce93f0d78988610e7
BLAKE2b-256 33ae01f7faa8f58d7be568457deef657695877dfe02530923b6ee8f6c30e8b3b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1430dc745476e3798742ad835f61f6e6bf5d3e9a22cf9cd0288b28b7440a9872
MD5 d46a1ceb3895d812e5ac4b2d34da8cf3
BLAKE2b-256 db107e20ef5439e827195534016f1774d67e52a80f54f93d62f16cbde0dd2add

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8427310ea29ce2968e1c6f6779ae5a458b3a4984f9150fc4d16f92b96456f848
MD5 a7042ad4c72e5348e2e26c0336b087c6
BLAKE2b-256 b527d782ce36b623bf0bd3ab56fd9ab9b2a06524b09fb9fbbd89d34b63073016

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f9f35df5dd9b02669ff6b1d4a386607ff56982c86a7e57d95eb08c6afbab4ddd
MD5 a595f8b637b2159f9b1db5dc1dce5414
BLAKE2b-256 165f9eaa3a16f103c94004797489b9abb3355a4af6695e1a1419afc6fcbe6df5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 fc668fd706ad1162ce14f26ca2957b4690d47770d23609756536c918a855ced0
MD5 a09c3e70697a2db419ea2ffa9acfbfec
BLAKE2b-256 d93b75742f6314f47578ceed1a86f41cb8343b9eaa41ab88de9c37a2c9d63656

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bdec9ae5fd8a8d4d8813b4aac3505c027b922b4033a32a7aab66a9b2f03a7b47
MD5 fbcd9d09b0691e432d3d928c956192aa
BLAKE2b-256 3a46ddb730c524bf02febe37febe8213517cd17a578534a605abfdabcfcfba4f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed708620b23a09ac52eaaec0761943c1bbc9a62d19ecd2feb4da8c3f79ef9d37
MD5 bc0e2ab6bb717b09d8ce1974e5d2fda0
BLAKE2b-256 70b7e3fe46662aa3eadcd2e475cd8989b8dfdb3c7b6efbd878d9aa3138dcaabf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f58c17f7a82b1bcc2ce304942cae14287223e6b6eead7071241273da7d9b9770
MD5 40788bb7f5fb4e51e627226b37a3bcfa
BLAKE2b-256 b443365cb5c08857ff0860ab773d1e92317168a2849c37d9618407ad1c565a32

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9246b9c5c8992a83a08ac7813c8bbff2e674ad0b681f9b3fb1ec7641eff6c21f
MD5 fe3c36aa720cb2f503c2b14506f9dffd
BLAKE2b-256 c5600d28b6a02c2eb611ce774c917b05aceec35046d769f9f462cbb340b73310

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7d8c186e8270e103d339b26ef498581cf3178470ccf238dfd5fd0e47d80e4c7d
MD5 7b1a26121aa2cdb2262fa9767e12e998
BLAKE2b-256 0d41222ad27a1a99b01a039c226880a0d4d24bbd5600b92682fc504aafda00b5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fef95249af9a535854b617a68788c38cd96308d97ee14d44bc598cc73e986167
MD5 4a64895d25904e466d9c05a7bf12d029
BLAKE2b-256 d6069737f48ca058f1d52eea08a31790caa187c12def402625b70e6f1cf9f565

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 59db06356eaf22c83f44b0dded964736cbb137291cdf2cf7b4974c0983b94932
MD5 f43bd7b31d31390e27dd5941ea65734c
BLAKE2b-256 6f24988a2b2e17d030b92a12a0fc26bfc44c38f99ae4fb6bc05b665bcb7bd77d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b485c98ad1ce3c04556f65aaab5d6d6d72121cde656d43505169c71ae956476
MD5 cfd820704399c3c65201aa7daf64fe8e
BLAKE2b-256 b0dc6044e09e91bb875672bd71c53fd5c64724c7b58f1d7608659cc871888b0d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 26ac4bfe564c516e053fc055f1543d2b2433338806738c7582e1f75ed0485f7e
MD5 7292bdb63e2a145c902e08713a6d288d
BLAKE2b-256 3978a9b187cc441e1b629a7b29c2ab4135d53b22500ef35842ab5f43bd0e2cb5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 d2659967c6ac74211a87a1109e79253e4bc179641057c64800ef4e2dc0534fdb
MD5 b298e37c66e4333e4b4ee0d65a345d01
BLAKE2b-256 423e97a934f030a23a8c7d980e7486b538f93f84562e63fd5e2fbdb44aae2cfd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21300c4d048798985c271a8bf1ed1611902ebd4479fcacda1a3eaaebbad2f744
MD5 159fb300280e405d9f6be71c2e03e9da
BLAKE2b-256 aa7734c9a30469f7499dbdcd9a7be7b4b176c980baa77b6570bbfba2dd4c60e5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1fc4fd219057f5f1fa40bb9bc5e880f8ef45bf19350d4f5f15ca2ce7f61c99b
MD5 bea22eb3043bfdc8bcd38268cf74e294
BLAKE2b-256 ed240334b95f5640d2caf2266904dc2d189f918cba1de1c029b2e0faa883f036

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1897d2ef03f5b51bc19bdb2d0398ae968766750fa319843733f0a8f12ddde986
MD5 5d7f5dbe60d5faba6409dc86fcd78842
BLAKE2b-256 99347516b81cf9a773e7d967e26eab291025881baaa72cb56a853c04013e8465

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a87e212855b18a951e79ec71d71dbd856d98cd2019d0c2bd46ec30688a8aa68a
MD5 0a0e337485c4a677c51c208e028f1166
BLAKE2b-256 aebc236a6804cd4f50e827c4cb91942b89bcf3c8d98d6fc211a1980f5e95fc02

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4990698233e7eda7face7c09f5874a09760c7524686045cbb10317e3a7f3225f
MD5 9d53817d1a6253e3dea719fef294542d
BLAKE2b-256 ae07469acda704349f45860a0dac966a4d428a7bdd36be0111de50d6000dacd4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f5d396b64f8ae3a793633911a1fb5d634ac25bf8f13d440139fa729131be42d8
MD5 d134a2958aada2792047a77846f26a5a
BLAKE2b-256 bfcc913a69dfe805ce2d618fd51036e3059a1f9315558ffab85e3d63c78702c1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 56a67a5b3f783e9af73940f6945366408b3a2060fc6ab18466e5a2894fd85617
MD5 2a8173a83afc7b05696c67a4ed3832d2
BLAKE2b-256 c94d905ec84f63bae39a980e1a1617b56ae555746dff19305f218e3eb7646ecb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-1.4.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72878878d6744883605b5453c382361716887e9e552f677922f76d93d622d8cb
MD5 fac4ff17cdf52bd74b738270e0023cda
BLAKE2b-256 2542c9c51863badf6995f4c5dcd2b35ddd0512990c108684c39a3fc6de1947b1

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