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

> from rapidfuzz import fuzz
> from rapidfuzz import process

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

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

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

Uploaded Source

Built Distributions

rapidfuzz-0.14.1-pp37-pypy37_pp73-win32.whl (115.4 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.14.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl (311.9 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (255.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.14.1-pp36-pypy36_pp73-win32.whl (115.4 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.14.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (311.9 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (255.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.14.1-pp27-pypy_73-win32.whl (79.5 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.14.1-pp27-pypy_73-manylinux2010_x86_64.whl (213.5 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.1-pp27-pypy_73-macosx_10_9_x86_64.whl (155.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.14.1-cp39-cp39-win_amd64.whl (195.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-0.14.1-cp39-cp39-win32.whl (115.4 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-0.14.1-cp39-cp39-manylinux2010_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.1-cp39-cp39-manylinux2010_i686.whl (4.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.14.1-cp39-cp39-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9

rapidfuzz-0.14.1-cp39-cp39-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.9

rapidfuzz-0.14.1-cp39-cp39-macosx_10_9_x86_64.whl (286.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-0.14.1-cp38-cp38-win_amd64.whl (195.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.14.1-cp38-cp38-win32.whl (115.3 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.14.1-cp38-cp38-manylinux2010_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.1-cp38-cp38-manylinux2010_i686.whl (4.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.14.1-cp38-cp38-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8

rapidfuzz-0.14.1-cp38-cp38-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.8

rapidfuzz-0.14.1-cp38-cp38-macosx_10_9_x86_64.whl (286.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.14.1-cp37-cp37m-win_amd64.whl (196.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.14.1-cp37-cp37m-win32.whl (115.3 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.14.1-cp37-cp37m-manylinux2010_x86_64.whl (4.4 MB view details)

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

rapidfuzz-0.14.1-cp37-cp37m-manylinux2010_i686.whl (4.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.14.1-cp37-cp37m-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7m

rapidfuzz-0.14.1-cp37-cp37m-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m

rapidfuzz-0.14.1-cp37-cp37m-macosx_10_9_x86_64.whl (286.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.14.1-cp36-cp36m-win_amd64.whl (196.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.14.1-cp36-cp36m-win32.whl (115.3 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.14.1-cp36-cp36m-manylinux2010_x86_64.whl (4.4 MB view details)

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

rapidfuzz-0.14.1-cp36-cp36m-manylinux2010_i686.whl (4.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.14.1-cp36-cp36m-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.6m

rapidfuzz-0.14.1-cp36-cp36m-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.6m

rapidfuzz-0.14.1-cp36-cp36m-macosx_10_9_x86_64.whl (286.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.14.1-cp35-cp35m-win_amd64.whl (196.0 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.14.1-cp35-cp35m-win32.whl (115.3 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.14.1-cp35-cp35m-manylinux2010_x86_64.whl (4.4 MB view details)

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

rapidfuzz-0.14.1-cp35-cp35m-manylinux2010_i686.whl (4.4 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.14.1-cp35-cp35m-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.5m

rapidfuzz-0.14.1-cp35-cp35m-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.5m

rapidfuzz-0.14.1-cp35-cp35m-macosx_10_9_x86_64.whl (276.5 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

rapidfuzz-0.14.1-cp27-cp27mu-manylinux2010_x86_64.whl (2.5 MB view details)

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

rapidfuzz-0.14.1-cp27-cp27mu-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-0.14.1-cp27-cp27mu-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-0.14.1-cp27-cp27mu-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-0.14.1-cp27-cp27m-win_amd64.whl (115.5 kB view details)

Uploaded CPython 2.7m Windows x86-64

rapidfuzz-0.14.1-cp27-cp27m-win32.whl (79.3 kB view details)

Uploaded CPython 2.7m Windows x86

rapidfuzz-0.14.1-cp27-cp27m-manylinux2010_x86_64.whl (2.5 MB view details)

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

rapidfuzz-0.14.1-cp27-cp27m-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.14.1-cp27-cp27m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7m

rapidfuzz-0.14.1-cp27-cp27m-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 2.7m

rapidfuzz-0.14.1-cp27-cp27m-macosx_10_9_x86_64.whl (168.5 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1.tar.gz
  • Upload date:
  • Size: 58.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1.tar.gz
Algorithm Hash digest
SHA256 d1c9991c6fbe2f448686096ccd6e588ceea18acd3e479dd8abfc1a9866c0cbd7
MD5 ec2185430b8d5de19f4e76e9e7a4f71b
BLAKE2b-256 061faacdb4183edfa6175b76709240f51206bed2976ca5fc1f379b4ed1716ae5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 115.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 a315e0ba076fef8e1ddf9a88aded504eb4511768c9bdea8afe46bd592eaf44eb
MD5 6a16c97787ec6641efbf955783c33f0d
BLAKE2b-256 4decb6eb82cacbd147cd2adfbd64d318af8aa711dabaaec1064f64ba82dabe5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 311.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8c7572733c71300eb9139e8dac6c935b00961624d2db51e22fd2b7eb310bd69a
MD5 287af4cb0098a19d74cd6ed0bbc670cc
BLAKE2b-256 4df5498168d138a43651432bc51b9e24ecc99c9525402e8537cc3729d639975b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 255.5 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7b9514134f7809d377ca340af95edb4422f175436b559195c999812c5d7ad17
MD5 6fb092f8061376e60c319b55bc43149a
BLAKE2b-256 aa8fc3f64760c5710966b95c082dc6177a39cd93e866f5221c72628161ed5aaa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 115.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 428b1442910a89b01e6c030b7eb38632c97973fd30773e97d99ea38e881e4510
MD5 5572b8ea6746aed4f734e9d420ce1aef
BLAKE2b-256 ca158676719a8d167e7f5cb9de4320a893d186b4d1d2839f26379748c15f87eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 311.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 73d4901b8c67cea0293f01715647c6add97a5c279857e1cf283a1392bd428f10
MD5 7902f2c1a34822b028be32207f2abc8d
BLAKE2b-256 77f233fbbdc3cd81cf7f21f2919cfc724324ec7e82b3e9d7743a23be2ef0957b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 255.5 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f6159ba0eff6a97088a0c67798e53b0f4ba9ccb18e663a1f12dd03564ddbc71
MD5 fc827c31842cc064ef675afb92db018b
BLAKE2b-256 714224fd22cc7abf63cc4428713a7abaaf5b664cb38a7696d5896b7646d50927

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 79.5 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 8198d1731a53252c2a4729cc0da3c89a31c1a9fc884aeee6e24dcb53a7e5af4d
MD5 0f4d6cbd801585acad09799dce1564c5
BLAKE2b-256 c3c7d7016382c9f498be60e2e833a771140bf540df0e719a4bc5670deb1b9d30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 213.5 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 58bf1aacec11dee6b34362e747b0e8021feb863c83cd5692c48af946cc7444a0
MD5 6b357e5f10ec9149257342394ca3ea43
BLAKE2b-256 7865c630f32ebe3af1606ab4e0b2537bcdbc9596e91c70537fad96cf03296321

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 316ebd764de8adb0916ebe94d407e8f50134e78227050d31eafd49f8cb888f21
MD5 8e8173c5b987331e0305022fa3dcbfdc
BLAKE2b-256 b777608ded6c6afd1adc3238dc19ebc801c6527d80aa00f0a2657081cc8fd973

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 195.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b87bd2434305596fa60348d49369bc0d7360f8ad3d0a0ce7a54f882fbb8ae490
MD5 b01ab371c3225fa4eda6ed1a719db7fb
BLAKE2b-256 a9cb36f460926f8c5b8de0842ac3e6d8116b5f061f76560c3e97246dfb066fb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 115.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f72c16932f4c843ee9a201f54b79096a9a0d509128a156668d55b9ac006e4b20
MD5 b602ff7ea46fd390b06de9c03890f7d6
BLAKE2b-256 f834dd79967f08c9dbe1fc23e8538b16fe7c1247b6a8a9a25aa23eb5a288f166

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2322540d3f9f8d1608da45e858ad5bfed15ca25728c88fa17d27d117e5855016
MD5 90d7f14e362b506c44a1baa6edc1eb79
BLAKE2b-256 589ca494f4f99f36df07180056ecd3906e7a86b109c8541f26d0574d5fa555df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dcec155e876793bf0fe510f325b59a79d9875d7db067ba5a74e925a19a1cb5d0
MD5 43ccca3d6011781094c496218b5ab4db
BLAKE2b-256 7f73d8f5c3ffddfb2ddce2abcca6d6738a5e11b97a1105c7d51056da5a3d4155

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2c07ee370ffcb6832b92189fc9844d11221c8ce192f593774a21d2605c322c8b
MD5 bca1c6678f1c5985f860b9d6c023d204
BLAKE2b-256 6cbcef388fab26a774cb96e9886ab6d9089a4df342bc413590d46473f55a6e66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 258e7bced318a86470f77ef60c5cd9dd266f6ced33145c2a2f4bd00f182c31cf
MD5 56d84108e44a5fc91e4b543797d58e12
BLAKE2b-256 f22f364ca74fb76013e874c077a1bdf77d4a36edddc78861079fce1f0c90403e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 286.1 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52f4a34bb826803bb8f575f5da41ebbfdb8bb4b81d7d653ea1ddaac20fdbb557
MD5 4ddfe02a5682c4a245f25d30f8d5e300
BLAKE2b-256 3fb837f7c29da7bc7048ca9dc97d5d72c65fffda3b7481c9910d57decf157053

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 195.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 510c655ac1fc7af9f27b1065a5e7d7a22d47e34a160702f8d670eb6087811436
MD5 9552f575b98f86e7ab1f0cda3d9356e4
BLAKE2b-256 fbad3e3e6cd63ac9ba180befdb89caa76430fae7be9437e31597106bc773ad7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 115.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8e44090047cadc88821e8f73339bbcb8d0ab7d33bc47a510b5f7fb323599382c
MD5 b78e50106a633f1687477c40c78f5eac
BLAKE2b-256 3f2fb1670d5d18803ef185b8163724ef30b2e1117039029b0eca6024fea6422c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f26ed1f630dbc9add21f2c0890fda8a58470997a943c0b497fb14febc182b9fc
MD5 95c0996863c18bc6856fc06243c7c050
BLAKE2b-256 6a67386328409a104fcd0064778102b09f4afb7b792aa6b4f6e7c791cc18578b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 121b53d579df3368a7aca8da937ae24a655b70f0d9ccea15b12bcc9f641eb3af
MD5 62520771c72bde23515c99a6e4f7c090
BLAKE2b-256 17a2d14f20a39c031999bacf027cf88eda6262225f0e35b6a3248737658946ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3c5dbc516b47bfd908e74951eb963995845a1dd546e7458cfaabca055de94364
MD5 1eda02e9de61b73d81f63940a7ea39d9
BLAKE2b-256 79d15cd19f767325dd618677aab8b28435e1e52fba73b99ef50cd37f86665d12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c93161cdd8dae8076b60ae5ee0ac15cca9267128491f5545b8c8f5dfddcf7f82
MD5 8a1fa7bf2f999b27280367de3b51787a
BLAKE2b-256 1112edbb0a0977cceccfb923f01bd416f3fd95bb1a6418c523496a98884fc524

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 286.3 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32f8dee2804f0278998f358604c5461b9bf36d73a43440251199b923a5e48ee2
MD5 96161bafabe3b33f5fc9d55ab4a18da1
BLAKE2b-256 455b98ab921979056d383e8972de9a98fef871151dec442819ca0a0c56897be9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 196.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fec252ab69a3ec334f96171006608f02fff0acecc57b3c78f4806b9f7a15b60c
MD5 24062d4ac7c0dfe1c757ea25f2b69654
BLAKE2b-256 bf2aee052b60c7e4d83fd09c067c344460d41bcad8e509b0bdb36087e18532e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 115.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 920ad0082d472a2ee8102a385a14704f7e65a296291c416eb812731d04302e79
MD5 793be170e26425e14a2bea3e0524b4a7
BLAKE2b-256 0c9724cb2fb0d985645909abcad676181d7537c797bbb1af651a432c9fb17c85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7a0c4dcf1fdab30c8e0478db74c6ba3c2fb8def53122a2c933db9422d41dfd60
MD5 fe5632513efb5f38551b5d7c1ad41b78
BLAKE2b-256 06ee7bec2d6f3d8fa1cd760e9d7403b90b13a52786e71906b40c1451527c81f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e92ceb6e65b8f718c92fcfbf2701fd29d8252a438e35e69332e1f0f9bc1962d7
MD5 6e0eab9b174d52f60e5089d107703b38
BLAKE2b-256 53b6030cd097b1e4364264bf7428c19e188023b44acb5a4bcef5aebf28e6fd6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4c45a43894b6db374a59343d643f8186007ee59ec4f875e3f8e450e200ea28b8
MD5 bb6db33a0b4e4eabbc43bd713c9d8396
BLAKE2b-256 20ed02b71aaa061bf595dd688f2f11b6a3bb51ae41ffc32aabe549f1c588d26f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c655b1a5261388db87142fa73bef20cac0017ca4d824017920f2249a34555ca
MD5 4b4de621060eaa6a0df21ab2c980bafe
BLAKE2b-256 72d6b7273985027121bb2f815fe63f814c9888f7a46c584a54fbe851daa1aae9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 286.2 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88d1d9dc1cf5be919b90bb17c245770e36761f8372386e6b3b2154f05c3fd966
MD5 4fb9d10a8095144412597b555b6b298d
BLAKE2b-256 f0abfdcea552c121e117244756eeeb05633459ac87b8b681c66ea023f7ab90cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 196.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 17e43cbbd99601974ec7bbccdffd91d9e9e5f226307ef82bae3968dedc52d190
MD5 597c648e8a289f46067c66a3e3ab1475
BLAKE2b-256 c76f38fbb9281746123680e7be389789aee175ff7735d5060e771691bd9e2c1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 115.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 08b80f458e5def95e2912f7454868512e83d504a4860e37e611f0907ded2379b
MD5 8b8c8ab756c39644aa467ca1aaf7245c
BLAKE2b-256 54195e6d3e862d9d94b5b1373b83017e2fb4f1e6aa8976c18951e4be7fffb6f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dadd796df3675bfd70f53f53a5c66601ac35fd5cd5c1c6883ed62163a6e9f101
MD5 5f0a55698685cbe57a07bb4ffd01f6f2
BLAKE2b-256 114c655f3facdf4ee5778eb6bdc8d4b41aa5fb6c5ab18d88c817a6ac4b3398b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f7cdddfaa3e4c6fab3d5ff69bfb285201146a5a6d690263162fb97389c723ab2
MD5 87db083e65e9ffe6b412493180ac3307
BLAKE2b-256 2722fbf224460428b36465956f9700d8de0baa218aeed1551423ea82b21377e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ebfeeb49376363149ff9ab4014de1dcff2a1d1e054eda8d5c4676752ce257aa7
MD5 b658b407bc4a90099ef955ff6d12f88e
BLAKE2b-256 faac509a20d1ac7bb49d4004b827a20d00e26fa0c8e249160bb8758975f67493

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a80b8aa4aed768cdede56e41e5567ef612226225bdd3a935b98bdf08d07eee3a
MD5 8c8b78e7daffa7225c8470c1762506d2
BLAKE2b-256 606c1babcca4f15f06ecf293773726b74cf01b00d9af77d25d1d8478ddbb5ec6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 286.2 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 08044a03dc85e928aab762596c69e62d39d2fbb08a0689bbcfd7f63f6daec8c1
MD5 18c803ba056960e22d665f12c77f147e
BLAKE2b-256 ace2d01b0952796930544a4a8ca08c5713ac8c3f57c47160e8cd8042169b1874

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 196.0 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d73dc1a1a22ca778412070035b6d1c5f442c4640423b28da5bfbd73039f5aa0a
MD5 508411a18e9fa63715aecee58a9cea27
BLAKE2b-256 5b32a0ad5eae2e77a4114876ddd8fc554af03c1df57bcc4766191bb255e7b4f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 115.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 2f125081615853e8d3484bc589d9ce28be0830ac644d6950d71838611fa32662
MD5 50a5db5e6741e906883facfb413734ce
BLAKE2b-256 d5f1422d5ea3728830aaee7fd6bf7b8dd597525a027e8db8672e469e177ada0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f602b1ca94f277fbdcd1204ceed5ad424d60f52af1d0ad6423ab0df771ff539b
MD5 947263ad313a0c566e3e28fec06f9edf
BLAKE2b-256 fdbf7388e45403a43230a76f2beef3a9a39ec718adf1bd9181a3eb3273a555e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2c2a029849c4f917211373ab690c6861b1f6bae5a097b9fcef7d5fe4ffd86180
MD5 590ac15dbd2ed17a1c9a7d995b83dad7
BLAKE2b-256 9f6eb201502fb0e2448a16abf132bcd78ae730434dec8355e4ba0c28241a38aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0e658d9788e299156daf7b1a4d65227cff90171f21d0512d91af587fd4874636
MD5 db1058344b0ca45d8d13a194d971d358
BLAKE2b-256 fcd6c9287f6aa43df6feb6b9d92419728522e36662ca5708a5aaca603af6fc38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0035594a9db27b1baf63050e7bf3859e84bb6ec7769669b7706c945472fd1344
MD5 2ee4142140720003bfd7d1fd8ef474c3
BLAKE2b-256 e9146d668c74fc68cea9f4f43d400dcc107a09599809f84b1693a02876d3ae81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 276.5 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d2a8e900e2f42d383da5ce79f765dfb5299869a35795f34727624e5c80d8b790
MD5 a46d0c74d11758b885e0b679ef4e579a
BLAKE2b-256 154b8dfbe92f5db096477e5c648e5a817f26b520fd321bd3822b9840de56bb69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 77f77ae752745acd7e89d6f8f5140f3da4322b61b4445bc5f2d903ec72c31e40
MD5 309ce2fde41e2abe5a28d94346c35fbf
BLAKE2b-256 06ff5b6dbe79b4ac2faddc4ebad26b7d216ba2d9133c3e6f2140e8ab03548203

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 81557a78ab3e236771559a4f490d62a7760207fb28b81ab10bebb099d5f80133
MD5 07541b6ecf45f6c3e1bce899135c4599
BLAKE2b-256 815b16a44c963967c48f9597e0b19139be11e5589f426d92b86588c0825e3c90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ad695b14c49dae49a6f2d967628992598aa3c91ef1a145ffb8c3f0bf2769d581
MD5 eee5cef56fcf3ef597a947862f729b48
BLAKE2b-256 a8e01930297c4686f8033272707f0461f6066e4b8716b80d3cf9b9076ae39363

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 65b937f0b4b16ab2c24798943fe5a31ef01e9809c5517738a9f5df89db5fa635
MD5 dd813013fab78346c4f8aedbbb42844a
BLAKE2b-256 6f2b9d7a3a0d0f3bad3d0a622e75f9eb4c0e2375c511472bf4c54cc2136862e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 115.5 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e17e6f8620dab861fcab324c7708dc9f6e68699409dc119bddc09414e45f83f8
MD5 9f88f5e2e07637ee88bcbda9f1c12231
BLAKE2b-256 719ccbaa6b33fe05b1bd726dd7f7a2e555ed6f8fe1ad4337536bd1011b9444d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 79.3 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 ef860e57469ea260e2815e2178691043a861843f55326e669b3b46d1865d5a58
MD5 e8f0ce774db1e94083e6cc9e06dbd2c8
BLAKE2b-256 5a2e22269d8f577550e58e5336210e8783077ca587942ae2b12f8f4f7b4e2190

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9de189ab58ebb854ddd2d2c30ee82db99489b41dda94d4f269c99995898f7943
MD5 4ce8af8838c52dc766369d78bb3796fb
BLAKE2b-256 cf5401d94c3a790e4df16abfa22a023ef9daecbff95789760cb74b34a39333d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1d2812af58203baf6ebc668d62d82b694b30331bdf27830f1a28ebddcf18319f
MD5 ac93fd55ae526872b60d8f7880702bdf
BLAKE2b-256 97d30a48d445136e25bff7d4c6a30efe8b8795112de68d35c4bcaf75c739e0ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f0c008faa5b550327fa8dd4e4484cf7c79e900a9bc723d7caba2fe91377a7ae1
MD5 2ecc444266bd7eb2a3858df4155b13b3
BLAKE2b-256 1aacd933f62311d124a783eb6c5fffbdec01ba1800e249dc28a0f7b28a385692

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 29df9aac84c2d29f1193cbb4ae515fd062817cef51e67e8f944d6d37646534cb
MD5 e651af428ef791a850e7ac49c4a0775e
BLAKE2b-256 bdb749d5e7ed7700750af75a42bdb7d2f75dc6d1cc45f41c43853157f9ce176d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 168.5 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 681b6a011585c40a75370ebe8b696e7960438cdd640a6b81914dfbd7dd091afc
MD5 088bc51db821f14e438385724a3e0160
BLAKE2b-256 d89a1106c0ca31365e0dc81b21aed468ad53651804dfd6b824f4bff42a2b728a

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