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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86

rapidfuzz-0.14.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (304.5 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (255.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86

rapidfuzz-0.14.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (304.5 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (255.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86

rapidfuzz-0.14.0-pp27-pypy_73-manylinux2010_x86_64.whl (209.5 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.0-pp27-pypy_73-macosx_10_9_x86_64.whl (155.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.0-cp39-cp39-manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.14.0-cp39-cp39-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9

rapidfuzz-0.14.0-cp39-cp39-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.9

rapidfuzz-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl (286.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.0-cp38-cp38-manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.14.0-cp38-cp38-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8

rapidfuzz-0.14.0-cp38-cp38-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.8

rapidfuzz-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl (286.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

rapidfuzz-0.14.0-cp37-cp37m-manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.14.0-cp37-cp37m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.7m

rapidfuzz-0.14.0-cp37-cp37m-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m

rapidfuzz-0.14.0-cp37-cp37m-macosx_10_9_x86_64.whl (286.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

rapidfuzz-0.14.0-cp36-cp36m-manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.14.0-cp36-cp36m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.6m

rapidfuzz-0.14.0-cp36-cp36m-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m

rapidfuzz-0.14.0-cp36-cp36m-macosx_10_9_x86_64.whl (286.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

rapidfuzz-0.14.0-cp35-cp35m-manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.14.0-cp35-cp35m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.5m

rapidfuzz-0.14.0-cp35-cp35m-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.5m

rapidfuzz-0.14.0-cp35-cp35m-macosx_10_9_x86_64.whl (276.8 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

rapidfuzz-0.14.0-cp27-cp27mu-manylinux2010_x86_64.whl (2.4 MB view details)

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-0.14.0-cp27-cp27mu-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

rapidfuzz-0.14.0-cp27-cp27m-manylinux2010_x86_64.whl (2.4 MB view details)

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.14.0-cp27-cp27m-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

rapidfuzz-0.14.0-cp27-cp27m-macosx_10_9_x86_64.whl (168.7 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.14.0.tar.gz
Algorithm Hash digest
SHA256 3579f3eb0725088a9f816e18478abf4bb46474044b51d6db8ed4f47bb1f59bf5
MD5 acd8e8ef09722fb98e159233ad780878
BLAKE2b-256 3532e582171c8008ae2974efb5a37f9911404c961133410dc15db583f529307d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 f0bce8b240bce1842f0ff4b9515a7b682c68f20bbb1b648b5592657a398d11dd
MD5 627961a346801fc23ff0e57171575152
BLAKE2b-256 27028293234350058daf4a37f98eef0860c433bb2c7c32e8e4f83709e75178ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 304.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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a084626c3507d6425370a086e06c02ff828a085d04ae367fb4c4712ec1481e4a
MD5 b5c7a0896a42eea35d0c471ddb911958
BLAKE2b-256 37eaa999962e5342a43f6fa9cc71c62b564cfb47d2d62c173eb0d675fa917270

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 255.8 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 270efa6dd9822a99d748d8fbd2ba0f1f0c032fd58eca5345b579a67d54a2fb17
MD5 971277c7b710a54718572c7ae2b987b6
BLAKE2b-256 eff77eb63691f72784d12dbc787535237722be9eae0d6c7024ec0c1f183dcb91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 0c9282e34bb8db448a245e0a01e459d34742b10cdc65d4dc38ee4a30a8c4b168
MD5 35289b86c5fb75e842f79f5765ac3754
BLAKE2b-256 f081b44002c23fe44bb5f9b5a15d4eeb897ec32f9bea88860918c3142d40214e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 304.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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c5c7122ac48d98987073ceb46259a3e83fe201c136927f2ac12558eed6c2b4ad
MD5 6ba59ac038d23bb330d167869d78ff11
BLAKE2b-256 bb32f5d0d0a5c8427858dd7db289b4c19a09e67153156f5f49fb9ed95acc7f45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 255.8 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1a8f0d76ded4d14d6204e9fdf3786cd3907d0db249389a373f077dc3f867e815
MD5 45a727514e58d37b9043670a8e3533a8
BLAKE2b-256 1a22d3097b7e77bbaa7d629d250c085791b0dc6ea2087c8f7ec32eddd016e63d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 020e9d7562a1393cb723e538c4f3d64ff0492bc001ba59f55a60950bfe8d6c45
MD5 6486dc97cf9ca3d3e19917737a59ab98
BLAKE2b-256 450e3b597abf5f274e5a63de6b520b37fb86a106a00f91b47863d7f3acb6e94f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 209.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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d223f0bfe4c26239403fa0d0eef28040fc0cece2eaf25a8dcd83c9afbfe12923
MD5 629f4413e32f592043739254803569c9
BLAKE2b-256 5b598247e4c0f3eb59b9ff2c88856945e7b1d4a9b8f6eef6cdbc9db811c1a1c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 155.4 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7918af13a79d72a1b2712611432891a60e3ed5fbffe65c9831953ee1307c0f09
MD5 779c88245ef634b5486eb1cb5ffbc14b
BLAKE2b-256 9076f5d629e8ceead7a6b16121f857c0d1bb6c4050611e96645ce902d0aaf04c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e5ef9f45598cf4d0f6db8d978350ebb7010774565e9a77093d03c709e27a7e49
MD5 399c529c418c9a2a6852971be5a2b860
BLAKE2b-256 c43f65f9e52b9e9db0656cf4d3698f2bf3530eab9388d10391930183df9ceb1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d30c5f342e03197921aff5b47505904e435377937f22c508ee407abecac7e4a0
MD5 9a85fd0d0a25ffbd27b08d4a76e38032
BLAKE2b-256 e6fa6eac4181bf6725ab3fdbff45854d4649f992d980082372c010599e5639bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 867d057b1be6732572111993ac254bf8e62fd6018582000214499179d5339278
MD5 8f9293d5166938169288f3d2d91ecfe4
BLAKE2b-256 fc37bb688a0551372885953347d84ea118e3e103ca30070dd3ddf99ec2ac2ab2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.3 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 936b6512388e67591336caae775434adbe0e11f812067c2d9bd6abc8c5e430f8
MD5 3f570763fa02308a0e158a8b9b7049bc
BLAKE2b-256 70536d752bdfc2c1a1425f603b9555c1286b73a204c373ca87e8918f4c853492

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aa937759965d394ac53d21c492ce3cafb991f666e1e175dac3bbc9ed345d0893
MD5 b9c80d3c8209c9ef63d535b5f948cb48
BLAKE2b-256 7bddc467bb943d74ba3038b34288a5ba255771e47d0c7882eee6a2b4adc3d3dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2584ebeeb0226fc210975d6d45a41b6bd2c1daeb305522da622787e48efc18fb
MD5 4f34430980de1a6a4820cd6e319e9351
BLAKE2b-256 d052c26f6be19fc9c2cc6ab278dc0f8ee97e675422a33dbd898783560f104521

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 286.4 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 54d557dbce52d9138d7ed1d1c7ade2b8083781611af30e5342917a15703b51cb
MD5 b919335d3403b076e0632869d24495b1
BLAKE2b-256 b1ff1b7b09e0614c80091ef9b455145bc65b2ebf19a96e37904d6e6cad37cbca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a70b32f978afd900dfd8b27ab3e6346e348ebfd82d5bb1f8c5f3db1d386b6ef0
MD5 76ffca3390ade854efa7cf3142a212a5
BLAKE2b-256 7f6a6eebc20f666c64c073e9f3568362b3daccf7298f3c8da3e6e872ed087730

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2410c3ea00793fcd7ca5ab2088a789e6fb4825119047d79188295be92e6aba6d
MD5 e933064b9c1f07ee65ea2677f5dc1237
BLAKE2b-256 5e055520170f7b2916449f83b5b151a74180c1b470607f9bfc42fe53ffc18b34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9fb47da22e9508e290fe23723b90756d009af5ccb4aa55beeeb5db75578e5db8
MD5 ddffc696dea85b5e9cd41d1482371ad1
BLAKE2b-256 32435813c87c6d1d2dc64cceff04879bec0a43ad31166af4a44e466cbcdb5b7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.3 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0f1d7136af1a0afd774c941a573f695d064d1e288c0311585452e613144dabb3
MD5 718aa6898acd3d2ad7a4ea9a759e11fa
BLAKE2b-256 9fa3c8398083ced05ffe03fa34f39af843622c1320170f8106abdbde251fd717

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 72431846439990a18df12f123c84414fd2a2694552dd5c973d30192658f8491f
MD5 e0b961bcd8bf806afe29cf314b9dc259
BLAKE2b-256 1c38f2f0b113f7630a82fddfe8aec0ee6c21f73a0577c53290dd718b9c3d97f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8da56616c34e29e5e3f19135ef8b4c963c067c5877bea8c8de3dfcae63240e40
MD5 6f40f5e6877fe1b233ad539a59aafa7c
BLAKE2b-256 df45809eac710be256d8299e6d7752b5a2011240fc379bce9327ade8a1c7ba52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 286.6 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e931ef7159339d32ec80bbf5805aea831d79d584b3d669cb1d569fca20364eb
MD5 db42575b99ccf37f02422204bbd62dbd
BLAKE2b-256 22a474a0e9feff2629db197926d36500e4deb822b157ceb2f46974282dc49054

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4bb7fdd297fc89a2be4f7691145a604da16b1a3b9f89d23f9cf6e9a6e014208e
MD5 92564b6c35167c9253ce8f1d6dd0d3b9
BLAKE2b-256 d3a424c86664907b43639188323147e3f1e48c7e355865e725cbc943049a40f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f2decb59ed773aea0e8f5f50e6a9463cd2b10f7f9ed9d6661e1eb04e0177cdf1
MD5 ce840c95969b418d80b0301ef5014095
BLAKE2b-256 770fd968ecc2541d41239433d5ee837d4f8db3c2e127d5dd0066e4876f7069b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f8fd6c4775b5953ea9a95686592653869fc2fe2078e4ee3a1d8a658134171bf3
MD5 77cfed58f5ff784e14d55e932e91c717
BLAKE2b-256 14f3ba7880705a1ad1efbd33ddc4a585de1299b5388bb11c8d69d6814fbb754d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.3 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5b00bb73789a5360422e515347b85ff54210ccc6126f62b022c9221b869450b1
MD5 e2d47afe180fa21be837799e995ea8f4
BLAKE2b-256 c94e4950ef15af623534e1a0a37c47621446a7a6f44cb26ff48c5be3f6ef9e39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 07cf4dae7b7ca11289a1f4c42eaf3dbe67887913c8d20608f4d9f112ca0735c8
MD5 23e70a82eceb05a1aff9d1ab7adc4534
BLAKE2b-256 b2f00ac48e8a6144cdea3f89c60648b7d389d5de9524b7a7ccedc9e85f0810da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 028387264bc506fe6f51648e5c8cddb3f773d96028e87ea060de70c125a66827
MD5 83163316565c78019a918d319d13f53c
BLAKE2b-256 fd68ff0ad97e1e9c1ecab054e35882e95dbf5e2598409cd24729d18d9b34f3f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 286.5 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77b252e831eedba9e9a2c1f103e968ccb361fc87640b9dc003e0287926a6d080
MD5 8c49f9dd192f398a2594bed3963787e6
BLAKE2b-256 a550c9a40a0b59bb5ae5ef6649986447b77a2dddbc92dca5ea41890d9c5147e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8becfdb87513436b122202c55a52df135c6866b078283884b914eefed68faf0c
MD5 4a2b808c7531296294899995e2419266
BLAKE2b-256 6d0a8c832dcdf86c16a700ff88ee114d35cfa28db1aa9597811ff9f4dadc4b97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4f977ae93c1b1ef7f7f1c063f06a2e75585e7b4aa7b8f88e7931e14ef1a99469
MD5 2e69e9c22342fdad4479f4231fab847a
BLAKE2b-256 da26010ae7ad4fcbfcb0ee4bc66fb171c6ddfb125a0e4a6c005d2dc0fc044c2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b1543359739278b139c2c9a5839a25667b9e587db6d66e9ca3079fba2ceb5738
MD5 24707c866fc4ab7498a44364d31adb6e
BLAKE2b-256 e9c3c0a134a959a3f88373175e71948730f24ce09f11ce2fb3abb9a2ed213c7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.3 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 03f3673ad454b6e7f9a5fe5cbcfd64cd359b45c27ddee02933ab8d604197ba52
MD5 6f8c012bf6748a661ba2920df8369aca
BLAKE2b-256 178465708ddd0c11ce07107a0375b9e5c752733d11be8c5fe14e34232a0f71bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9d953c54065a1fffe6ba1ad79a5c79a1975d202e0ca4b484f9dfaff4fe747fa0
MD5 ea1e456ed5e047cec09955b1278dd796
BLAKE2b-256 747ccb26222fda57d5178705bc9a1ab34b0d37543ba292c0722e5e5698153de9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b8311e8c7cfc8eeb6aa2e69241fde35cc010c8c10217bc5a9d897cefe8f6612d
MD5 1b27bbc65bb4a19c85e5d9b1f1321ff9
BLAKE2b-256 89aae861eb3464b3a470aadfbdd6b372091394318fad3ae051de4e23677b035d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 286.5 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 45931841b4b1ca470ba04adc267da9518b401855983488643bae78330081ccbb
MD5 5024f50227f65cdb5edf2eec15ca68b9
BLAKE2b-256 403923f4dcf1a200491fd511e8b3662074572d030ecb2d2eba552e6161aad6bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 cebebcc4c6206f48b878bf64cc06b05a6d2af74438ea9b449c076be165e48beb
MD5 7ac65dfdcee37d16f177039d911b2daa
BLAKE2b-256 928beab637093522babfd67d5e4397b5ce40d945f133358a2b117f3f009bbb31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 d03c74c7103ec22936e8e66ba613eacc5fc0d6442d49f23b3410338f736b10a4
MD5 aee90f5ee112b33adedca5e34f5292a4
BLAKE2b-256 2d8f7a24b295cfddb61da43b1e11a68293fae10f5dc14dc7b35663dae05a5c6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 12ada070b2ff8f8b74a5ea9bab3f2b9b0c465da4b457ba54895b47db443b8e24
MD5 add18b34094be648714f07884e3faca3
BLAKE2b-256 43e7940f29625af22ad7fed18ed10ba6724221f7d01079af622afa86d6d3d83b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.3 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0a9db44a7069286fa2f969259cd398b38e180aebf6dd99af6587426aa85961af
MD5 5206f00a094b697ba67fb2199f06d910
BLAKE2b-256 5de6ef55a2de6a2f9529f7577affbe0671d25414de810c4676084208cf4aef56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 729b06d1bce1118ca39385e82bd48173aa33428d64020e7f4b1dafef18489fe6
MD5 6594fa164c12d7ca79697e7941aaa165
BLAKE2b-256 9f747b0724e3748cd85d4016f14929b037183b672490322925841ad55622a7df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec4ca2b0d106abfcf6ba22c804e9dd421eb6da325443dc9987405568ffa1ccef
MD5 13928101234c1c40950665825fbd362c
BLAKE2b-256 5570dee20e7ffd0c14c163922ef0bba5e959bfa71f7836572b46747737b78c8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 276.8 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67e257ed953f73f836156fc11e07dfb10e1e515f33d978f714725af8f007e8c4
MD5 fdce7ac8df2f89057ea991342aa2f4ba
BLAKE2b-256 628980afd1b2f6aacda987b6f4316f050b301f98844cf052a97b3b7c9d31f8b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5b869321a71171f1594bb4356a30ba7b81849953c38f8fd4408b8c72cd81ad6b
MD5 3883392b12a0921b89f12c5fcd636b3a
BLAKE2b-256 f41ec7299673ff806cc9399cfd18a28272961e261a974d64e53d5a34f42d01d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cb3b169f349630d9888cb33a44317a47a4e64abed1fa10542352d3c86894e367
MD5 68556d242c127ffc7ac36e4bbb993f13
BLAKE2b-256 51e9d014e7898c6e1a0675b7cc76c8476ebdd231bec4005dc23c30119cbc4132

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp27-cp27mu-manylinux1_x86_64.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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4372394d5f2a1569acd648ea95c89de27a204fce1a35955acabb44c430aa6d5e
MD5 84736dc81c79a31d0d5fd16f0e449b5f
BLAKE2b-256 d5c0bcf3d91cb464040d3c85581b6b65e1ea0ea614d29fdd3a027f9b59409599

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 63018fd7a84f62548af95f74edb6fb5711f7a94c456f0c2adaa76dc0d8d08c68
MD5 fe0085900c0bc85996dd27b705f05848
BLAKE2b-256 8db5864ab30349b8f603bbfdcd0581d617bc8e301cd4d75ab708fcf33d8eac3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 9c187756a2024308fb3181625e605af43815fb4ab57dbe175fd3c9c42eaf1909
MD5 9e1898133cd3b1e377d378eda8271232
BLAKE2b-256 3ca8b031d1494127dfe269905b67fa586dab8659dd63e4dec3024eb44524c444

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 1706271a71dce1d894b7dc27ebd2edd39e7e7876eb5ba92006aa8b437ba6f62b
MD5 cc8f81e12a6d9b4f38339449a6058920
BLAKE2b-256 abe187aaf22557a53c3d8f50bfa9fafd798abf0ea46d27220d1b01fbc01b490c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e8e216d2f32e899cca0ab38b5402b3f1833928c896ea1d11ec2e15fcf143e3eb
MD5 f27b12705612226b671d554de12be20a
BLAKE2b-256 5bffc32aa75b5f0975063c5654d4fc0099ad11ebe96d6e77e7fa2c99fcb30a72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2c956893be5dad2cd537f17ff670d3907cd97acabd8fbbd4b94fb0c0efb328a2
MD5 ac651774b632a8ba9372a8d40dc940bb
BLAKE2b-256 8e20d0ea6ca9a942706bca31935238efe16dc75cdb5d3c6a1a39be6bd74f1bda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp27-cp27m-manylinux1_x86_64.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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ae01d4aa850dc5faf51e1f21cf6111a9ff51806175b19433eac04d7af138f290
MD5 1339f49bd06a1c21dce20475e4fe1651
BLAKE2b-256 d980b8769662af76b8b57c86bfce713515c45e4063cc9c81f8ce04224e015e7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ffbfa5f012add83f50b37947a181194928d246d81ab1f2e7f05c661755b6f369
MD5 32a4130a53caf501c83b996c5d4e9321
BLAKE2b-256 4e9e13672433515c0c5611802422d24e5ee44418501215355fbef0de99f369a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 168.7 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.14.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bba5e29199ee8aa2e70893115a59d27ba0549ac71187cdfc6d4b4cc762b624a4
MD5 f7d6f6aa4ec1ac8b93183562d01e6d71
BLAKE2b-256 55b3b721725e7dab2f88492a4d96b189b4e7ce464e74e61023623b27b61bf998

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