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), ('new york giants', 78.57142639160156)]
> process.extractOne("cowboys", choices)
("dallas cowboys", 90)

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

Uploaded Source

Built Distributions

rapidfuzz-0.12.1-pp36-pypy36_pp73-win32.whl (84.6 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.12.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (165.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (139.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.12.1-pp27-pypy_73-manylinux2010_x86_64.whl (120.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.1-pp27-pypy_73-macosx_10_9_x86_64.whl (89.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.12.1-cp39-cp39-win_amd64.whl (132.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-0.12.1-cp39-cp39-win32.whl (85.3 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-0.12.1-cp39-cp39-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.1-cp39-cp39-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.12.1-cp39-cp39-manylinux1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9

rapidfuzz-0.12.1-cp39-cp39-macosx_10_9_x86_64.whl (145.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-0.12.1-cp38-cp38-win_amd64.whl (132.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.12.1-cp38-cp38-win32.whl (85.3 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.12.1-cp38-cp38-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.1-cp38-cp38-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.12.1-cp38-cp38-manylinux1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

rapidfuzz-0.12.1-cp38-cp38-macosx_10_9_x86_64.whl (145.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.12.1-cp37-cp37m-win_amd64.whl (132.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.12.1-cp37-cp37m-win32.whl (85.4 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.12.1-cp37-cp37m-manylinux2010_x86_64.whl (2.5 MB view details)

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

rapidfuzz-0.12.1-cp37-cp37m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.12.1-cp37-cp37m-manylinux1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

rapidfuzz-0.12.1-cp37-cp37m-macosx_10_9_x86_64.whl (145.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.12.1-cp36-cp36m-win_amd64.whl (132.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.12.1-cp36-cp36m-win32.whl (85.4 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.12.1-cp36-cp36m-manylinux2010_x86_64.whl (2.5 MB view details)

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

rapidfuzz-0.12.1-cp36-cp36m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.12.1-cp36-cp36m-manylinux1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

rapidfuzz-0.12.1-cp36-cp36m-macosx_10_9_x86_64.whl (145.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.12.1-cp35-cp35m-win_amd64.whl (132.0 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.12.1-cp35-cp35m-win32.whl (85.4 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.12.1-cp35-cp35m-manylinux2010_x86_64.whl (2.5 MB view details)

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

rapidfuzz-0.12.1-cp35-cp35m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.12.1-cp35-cp35m-manylinux1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

rapidfuzz-0.12.1-cp35-cp35m-macosx_10_9_x86_64.whl (139.1 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

rapidfuzz-0.12.1-cp27-cp27mu-manylinux2010_x86_64.whl (1.4 MB view details)

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

rapidfuzz-0.12.1-cp27-cp27mu-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-0.12.1-cp27-cp27mu-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-0.12.1-cp27-cp27mu-manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-0.12.1-cp27-cp27m-manylinux2010_x86_64.whl (1.4 MB view details)

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

rapidfuzz-0.12.1-cp27-cp27m-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.12.1-cp27-cp27m-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7m

rapidfuzz-0.12.1-cp27-cp27m-manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 2.7m

rapidfuzz-0.12.1-cp27-cp27m-macosx_10_9_x86_64.whl (90.6 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1.tar.gz
  • Upload date:
  • Size: 48.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1.tar.gz
Algorithm Hash digest
SHA256 6fccafb1fede3a2789f31fd44948b43400286fe048079b58f14d55a610d53fe9
MD5 c92dbd5f42c0f6a69237802f53845586
BLAKE2b-256 7c1cb5f5c89df9c8bc049b4d30c698d9972042a15704a747475fc446eaf81b0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 84.6 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 aaf37b8eb7107a8131f85e33647dc3e4b4c4351f95e6d01db9b23a991b9903f3
MD5 b1e53c635f4e9285049e191a6f19eeca
BLAKE2b-256 ca2bede48bc4000f1dd3bc9b1c1a24319364702e434fcd47f526afb1046b231e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 165.3 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1ac13975784a41a5dedd2e5e2975c3be51954c3b80057ec420d70edbe4662a72
MD5 17dcee485551cf24d9db9e7e3c641e6e
BLAKE2b-256 13c0614964964c584232554f75a32817634a7dd8025c626ec95357dbb71bf582

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 165.3 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 59412a5ff2bb7f182f5b568d6f63c91ac1c25f811fb3b5ef4334b1e8dc62bfab
MD5 4069261343cc66d31f9a7ef68e55cd45
BLAKE2b-256 f7cf577188f9d02ad9af63c473f83be4ab4c5ca3e33333ce6d675eac87d8ca13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 139.2 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d95c77e5ab6c0829e40fbd074dc6f242aff32672f64019d784cb199e6e7a272e
MD5 db1573b449601d3b8fcfd95a26e890a3
BLAKE2b-256 bb41379e7308894c7ac81cb1df35597245c5924bb268ed398ef1cebe9b61fab7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 120.3 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9546d4877baab4a18a047ea2e24068477e7209b55ccfe81470826462f7b3f46b
MD5 b5ab3ea0964200e12319c11ecc48473d
BLAKE2b-256 20ca947d73b0f09f843ee65c398f0497fffdea96b908145d1e054190d422e799

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 89.3 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1da9b367d03a9ef73f6fb6dcfe40a9ee5edf9b538d7d5cc55277559675d2b29c
MD5 7b9d1a22b5f347e6accea453c0bfed21
BLAKE2b-256 0d7673d8abef5cf15b610f33dfdea8b95b8afb94aa22c4c92386c79d04ea66ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 132.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 42393790cbefc018d0649c4bdfc397be9d8b6f256c8d98e42cca5793d11529f6
MD5 dc886bbbb513985e4d00bcf8030f7ee7
BLAKE2b-256 70ec7010117860624d67ff423a2f1fd7107e1b4b6db300f49457f2050f235ff3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 85.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1629a72411d76e7ef2640553b3490e6a73f5f5cb3b88401936df66ba6c7a54e9
MD5 12e1c786423d0a6eaeb7394cfa380363
BLAKE2b-256 51683ee7c237e08d28cf392ec92a910e8cf63bcdc81c999e34473a84e000c195

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f0a4a6daecbeb536499670cd7cf412b932b09b5f06dbbbc824144f0ff7f4a813
MD5 401f79187b54ccce176c20630c10b069
BLAKE2b-256 2e5db23cc4e8ac74b05ad67beed1a54ff4b8a2db8902052de7dcb1ced76a5f85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2be8cadfad4d501b0064d92879eaabd24866bf093d31cc6aad3bf1eb47ab96b2
MD5 c3771db3afa75071bb8b7daae9eb067a
BLAKE2b-256 8881779c09a4d5f52ea5c8dcb1820ca1aa1bc066ef8a3fdfaa8cef19cc2b770d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 834fd51adebecc0d61ac0f1c2fcb68d36ebce6f400f99394379b1babb898c2b9
MD5 525ef5a1c123addb69875c9e27e1b78f
BLAKE2b-256 31aed4f15d1353b765d0a787a228369a70be1fe56d200bace6282c8a492f48f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-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.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 84b599826abd1d8d8aa56b1cf141a129980e4dfd2ceff653a2fa15d0e86f94cd
MD5 283e5bc9251dfec85657a5add5f0468c
BLAKE2b-256 bfe8280b548d59a337e652ed1c2376c9710d131acae8cf9a997deffe6c00e28e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 145.2 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0bd8102902f03c52b35a7ff95f6fb8a72712cb50b7bcb8f943d8b1d0abce22b8
MD5 1a2d5e37663e96dfa65e5bb9154a1582
BLAKE2b-256 309e6bac601b0d6303f78fb3bca4f2f9122627e38edbc8621917848275b183ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 132.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bea827478c0c68d982317ac3cc9f7ba21563864398af33b3d3195813fa4c12fe
MD5 eec616d396ab8734cc42b068b9094d4f
BLAKE2b-256 576e09a076d6cbcb27a16a6035098dd3738ed1442a72038831f97d0560073aaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 85.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f4b36b6699b887879ca2a272dd4b5e2e1542dcd52f19b728034e8475c10335c0
MD5 707387c8c728ad2e06757d1203b441b2
BLAKE2b-256 1a7596340a5c05fd9be9e90b26cc47c14d3db01125dd8f79b08c96450f73118b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2f449d6b038713d257336787ee2e700468a267b656e19e18088ca971b794e191
MD5 44c2c325a7c056ffcbbc6087285d19bd
BLAKE2b-256 66d3c9372f1a376c3a6e2d806a0b6e331d3c36883369c28d609c7624958f5807

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 352b4b716667e6cbb014701674a23da30fef8217df6fd80c6d3a7194b9aa0a7d
MD5 d06648954a81b18857e3f2e0619785b9
BLAKE2b-256 5e094b3de22bd504a3bef4802362b4c7aa5f76d2aefde68024f37a52dbf33345

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b143795df80fac568aab074d4b8df1d6644c0281aec017fdb5be27f48dd59046
MD5 438c54925cf866bbfc55413b7088b173
BLAKE2b-256 936e369e74e5d289451ae2b4ca6247f796a6cae008ecc3cb66515a004a18e785

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-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.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e9149de19d82fa0f6601bb7e4bf430219da4ebeee4d703a7ac0df2033a24c1a9
MD5 1e5feef431c150ab592ad165f0aa57d0
BLAKE2b-256 b320b865746220b897e135b0e3ebd4cbc50a540ab663d995afafe3fe3fadf386

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 145.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1fe87765cedef759e1d60741732fda1937f46d29657fa7aa926026f819e1cb5d
MD5 b74271eba4bae64e5d12ac29a97662dc
BLAKE2b-256 67615f8fb9c5a89f834bc20023e7b536c7c96cc4f2b8d55a680f093282b20f27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 132.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 de0f33369ac1729380405a60cca5f8acc16f199915051295d83f54065a26d168
MD5 745e8952efc98d5298e5175a20ea9772
BLAKE2b-256 cfd82187df7644d33e43cea265e3f40fdd248e7eae808bcae8076fb2ec96cb16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 85.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 707e9acf293f09a33fc47d5ee73e371593cc3613e7f7fb6a6bb22caf84346013
MD5 c5372c9a34432fa2e2326123c8c299af
BLAKE2b-256 77d72b2a5899f74ea2055f0bc1201ba9950cc1212e7121a24ff6dee1548c3f95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e03ed1c6865d17b0c5e0e6b4c5c46e0691538ebd4e6c91ec392133ba8cbc2528
MD5 d27eecfd72e8b164eaa6781331f0918c
BLAKE2b-256 19fd90168b861134049402c8f64eaa26b972d7168deb2b7f1c592926fda9877d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ef8d638f9d011a8aeb65e54d76e5e91334886a8d93f404b662ca2ea9ce978683
MD5 6b8a710a6d5d7b196e0c2fa5f33ad326
BLAKE2b-256 dc0e581268ffba6865d7dbe99bf815f618a542cec4fc960bdc40097efe4f44e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cbd74e03da320ccbfd24165236ab339505e480e35e8217d8d60df989b7e3f2d8
MD5 b017c3b7c117f12fbd0376b999171bd3
BLAKE2b-256 a6bb4aa6aae1d013707e53970bf19a955aa948f02f1a3ea60eec2f9f67de1aa4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-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.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f0ddf6752c3f650d163febf09c5825538d379071aae57eb1f9726cdd2410fb30
MD5 e56ca9b7e14c6c28c901237788b4dae6
BLAKE2b-256 873ce11f5a8c2dda85e9db066cd14f6e3689ba4f83482d07bdfc09fb78e77273

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 145.3 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b77fc498533952422755ea9960ed82dc5bca23aa73a909d7265e78cd6cd11b0d
MD5 e7e0da1790d0f67537e1b5a9821d6725
BLAKE2b-256 18dbd45d4f2bdbc0f7304feb27e39cac026c96dbadfae526428ccd25b0b5463b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 132.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6f252b325f5ab4a5e275a09b7330c74571f488d91a9f50ead9cfd43cb3e6610e
MD5 82e3e64a2cbb21eb2596b85cb521eb7f
BLAKE2b-256 16d406fc1b143dd3a6c8b7e0015235d63a13a8d945897d85fbf6a123b57f57ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 85.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 403cce8bcc6cd5112495fc5bd57a96f7097125e1fd82d9c1a0f0e105330bff62
MD5 b1d4fe4418d9e50c7ac0a60e7815cd7e
BLAKE2b-256 bca0b00fed043487a57c27320caabfc1dd9a6cd1185f4fa2673e0142b43bebb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4628768e76514d8afb413d6882f93dbabbf5c98f6958283f83a582e566fa4a22
MD5 ac8d663e184d5f265f6037ec3c014ce8
BLAKE2b-256 0e2282879ff13c6a67104f6e8494869813baf11de539452854f99382194a5455

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 12a3111a751494eefc43addf03e961922ab7f697aceb0590e36bc35f9636d3f2
MD5 f88ddb847e823638de428902da2f7911
BLAKE2b-256 06995e8ec0499adc6f4e61971159b4bd499c8f567a9bc673b2fb59da97d75f4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 14d5f39ad818e8b38f2df778a0a4d7068330f312b6f5f6cfc911ad7c9bd535f0
MD5 32e05ae8489a5867b959bb6dc5fe5500
BLAKE2b-256 5f2bed59e482366a778bd0a6c455bf291984b703e37a4c18d0860e5539066733

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-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.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0652e3497552457fb6d83507e019cd6cee069f8de57e077b3e6d3b741b83c67d
MD5 78f5493d50bd022ce891e09600f0af67
BLAKE2b-256 d068685e89d55a37609f04a55eda165489afdfd5c4dbe4b1c1d6db54270372f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 145.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2d16793c08c55e8fcbf29f6eecd16ddea472490f9047b4c9542dd119d264563
MD5 ca1adf091a8a31133f7b50586a56377b
BLAKE2b-256 4278df01830d8a6640052150c7b65756b33cd83065f69cf3e505854a4b02aed7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 132.0 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 b13586043862ad5101a0377f45d892b9079f3c124ab174e6a6017a2b5b95c289
MD5 825bbe4b32cedce7920401800aa89404
BLAKE2b-256 83416624a6744bde281ba005c11d277539933be12ee45bbc0cc2390526fe31c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 85.4 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a1f57f4a6e3578e0fdf962463b79711749d807a5ac9e00ae4424a9da9064c848
MD5 85c0fc02c55225a5ed2ab621e087dc36
BLAKE2b-256 449acd73b902bad829d66b78768420aac8a03072398fc15f93d5d5b0ea55c4bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 97876625b08a5c7b4eec2775f29b706183bcccd9ab38cf3e66c4a1cbed801314
MD5 1ea7d0dd6428e3298ffc8248467c393a
BLAKE2b-256 27e560c6913901c549440a15f513f3ee3aae32adbb013bfeaf150b4579e7cef8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a037ed0de1c4fb04816065ccc7f99148579343b3f2f484b1b2fa4be369bace36
MD5 1b3f06f7765dff2c261cd68aff04b8cc
BLAKE2b-256 0849939932209723e4196ec2110873537076f2a69f30802619334327ab89ad97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6a5d69782c8ac23a8cdb7007aa0ba803348f5645bdda61e6155ab78f756d63c8
MD5 d0c66e8b43f953ad4ebb120d4c3bb699
BLAKE2b-256 39fb6957827696f2e83e567f6b7f18d2b4a998fa342796c800076af26884caf4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-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.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c2fbb62af4485b1e823b623077c30556159391c20989db84d5edde352bff1498
MD5 57e9ac830c434d872283260ee448b715
BLAKE2b-256 3d50a90d4d81caba04a90a04e0574af63d13269628e54d45b29e3885317c2520

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 139.1 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1083d33946a7c6ef3bc28f3ccb4b62b62c2807967e5f6f87a7f935b88a5cae1b
MD5 53e2b21ab75068979aec516a58d15c96
BLAKE2b-256 476ae5bbfffbf2e0a6929bfce9d07b2ab9076f77a41ceb2e283ec4b620c492d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.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.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 24d10e3cb0d75613efc3258553fd8f82cea23ebb403ce1ce17cff1ab289e10a1
MD5 8a98b9df930de4617fd17ec9fe2aea6d
BLAKE2b-256 765372b4a2d5a9639ee7aee0e5d29352dde08b1ab86f577184e9a490df455476

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0b47866d8dabf2af9a9e8b57218af157132b3064e6603626e5ec3f1dc17ffa7f
MD5 04fb67b75413a75359cfbb79d6c4c114
BLAKE2b-256 0b6117f89f9cf417e0c50ee01959c083c0973d61f99280aa990654bcb87cfefc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 227dc0303037542e6a04ccb34dca4db465617dc64eabd2637094c254995e715f
MD5 d4715a9a1ee81c438e56ea12f14659b9
BLAKE2b-256 ea3fa2a0c408e88030b971aeb41a79624dd6fc6430ec56ce0a42c9fa9aaf5d18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 940a533ff961213b16e7c1493561890e2b33dacd51f603798b1a215fd21b452f
MD5 6bdd2a4149ed8b927faf2723b16491aa
BLAKE2b-256 b9e7c66f068649db26be6d3b8338e4e7419c0b235f530eb19ab579ef486a1c39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.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.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f08df0df873ae4dc67326c3a616ed620407e4b7380259a9777876d94ed05d180
MD5 95899d6cae958e94901fa90c8b887fe6
BLAKE2b-256 802647cae931642dccb2110d74069dec6e9bf15ee6f2bb805684e2b364d95a8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f7786743178bb6513bba62344d73a59e0577dfdeb4512f3fb62ebe1ab33acfbe
MD5 33784d0b39a9c1565906756fe7a1a7c6
BLAKE2b-256 82b6d63f150ed2f208b8bcf7aed0f1d90b2b2027c5fd502951e11aa400198fc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9681f707c0c2bad419c800eb4c0ccefa1d20b6ec1d8bf3592013a17a5a398bb7
MD5 e538ad610a3db4aed26aee9eaf01fa13
BLAKE2b-256 6dc1a0204d64a02e7771ec4f0d3f480eeb59e604a140b51b31573f51cc646895

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f65a5ccff4cab54697bc515d4d878e93724cdc5ccf9da4649e5744f16b44230e
MD5 af30c1bf75f7e740d49718a2558658cb
BLAKE2b-256 7ec2c2c9fb90a85f883865bd6e01eab85bc3b9c4ea3d693a484218bff16c13e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 90.6 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1461eacf12d7db6cc5a143d79238b0e0347eb0b6dc1c146b1053a3bc7ad7affe
MD5 13f8dda0bc130bc9883e6972ec33142d
BLAKE2b-256 d1c89a7ffde0df8b7807884b4ee2250858443bc45436dd6018a022a228780f5b

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