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

Uploaded Source

Built Distributions

rapidfuzz-0.12.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (165.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.12.0-pp27-pypy_73-manylinux2010_x86_64.whl (120.2 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.12.0-cp39-cp39-win_amd64.whl (132.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

rapidfuzz-0.12.0-cp39-cp39-macosx_10_9_x86_64.whl (145.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-0.12.0-cp38-cp38-win_amd64.whl (132.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

rapidfuzz-0.12.0-cp38-cp38-macosx_10_9_x86_64.whl (145.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

rapidfuzz-0.12.0-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.0-cp36-cp36m-win_amd64.whl (132.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

rapidfuzz-0.12.0-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.0-cp35-cp35m-win_amd64.whl (132.0 kB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

rapidfuzz-0.12.0-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.0-cp27-cp27mu-manylinux2010_x86_64.whl (1.4 MB view details)

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

rapidfuzz-0.12.0-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.0.tar.gz.

File metadata

  • Download URL: rapidfuzz-0.12.0.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.0.tar.gz
Algorithm Hash digest
SHA256 1ebcaaf766131b36a2a3d7d6456a3bfd1999b523c4315fc5a4d3b81d51ba4c5f
MD5 cfd6cea0ce929aacad9633b98b644317
BLAKE2b-256 a4c1f71dbe6d9c8b8926afc89b199b5a98e739c40598f15180c033f8b03bb5d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 165.4 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.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e04691065e593b536a7e70c3b8a5e90f74cbaae34ee1dd7b542934ce55d8f7f0
MD5 0b099580c718efe896c95bb7958af968
BLAKE2b-256 3fe030d3956bf788c11042c77f430128b1e2bbd221f81dd6b075d23e4baef4f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 165.4 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.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 da66ea4f2df9c040090dae28d9cfa1e732926fb7cb5e83ed928635836709165b
MD5 22b1ce3e3d079c4fd308a5c2fd6018cb
BLAKE2b-256 2e238154e69d95c5c55a296eb196aab449410645570285d7efcb354a1531fee9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56eadc725fd55f0591f7102c1534317eb190f2e352fcf9e60115f04785b9ef10
MD5 95c57317175783bfa990b7f68e177b27
BLAKE2b-256 428468863039c268c09e63a53ea5950077cae3749318fc0acdfa8c84e69e528f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 120.2 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.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 67e7cea550ca7bb6ffc4a94aab54705248988f3e546fc5974c49cae0ea8c90bc
MD5 918eb5617eb95a76b6836c1450ce4ec3
BLAKE2b-256 ef45e97f89f4edf7d1dc5b545f82071acf9d0763dbdb261ea38991ae1dbef152

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 185f5da1569a474f702014f013c36d1f110aa5965d39e73536381aeecb9445a9
MD5 018d85e1743dbf0770a5b482115ba240
BLAKE2b-256 8150f7762aedb6af7f204373ee8e094e47c9c546254fc031a2f323a306816e3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 132.1 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3e565bebfa150035dabd75dc2c1b7435b129e0b0b22ce69595ca700511a6b558
MD5 1071aebf34f9169929d625ff2065b309
BLAKE2b-256 b3449ee73b8a59d024636df55efb1e9a1cb134e0adcd3f90822e623f721a3b3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0844bf0906c07bd9796bd41cfc1d0d80607abc9e3a60b68a1d7576b4a6a20dda
MD5 d564152ec8b7e12552e8f32ef3f156f5
BLAKE2b-256 dcebe78121981a755f3b9a62b671f445dd8615f759cb341a2bc1ea731dbc22bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aca7d6a88cd418573c02b9cbea51da4a4fd0a718a76e71854ffdd011f7d6335b
MD5 b4738ff852a3ce21e9f1d789d766e650
BLAKE2b-256 ce3a2106f5bddef74a46e50704faf46c6d673feec8ee104884554a2885062892

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 87a7b16c91a60a7e08cf1de06359fe8a03a5f0fd6ce70b9d00b5d78704076a5a
MD5 cb038066420ec5e9a94434c07f1d4f9e
BLAKE2b-256 46764fece29cd2e2e89d64aec673d5d1b2b6aeed4d174f44b8c68d93adff9205

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 857b8d7042ce15c8f411052c91cf99db46330665e2f0925eccf1d258ad09bd29
MD5 d3bdc6de2b65b661aa7568d616571702
BLAKE2b-256 567e7d84c4ab8565c725e30761fc96655d638a390316ea6dabc31d9bfc784cd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.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.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.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 83913279b25d2a78f0997810a89eddc76ba88ac4bf288182f36f1d4d3746b978
MD5 dede075539c9a12f53cf0e0f716693a8
BLAKE2b-256 6a97996aa7d8241e91f961a22eda1802727aefa8712bd7b5e16cba4a2b8a0acc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 145.3 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.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d7d2ad5f76f7433de2195d96180ab93f5fbd79cc0365dc60e9fbac186ca63de
MD5 daa96f10d1a7f92808d91bd1940c00c8
BLAKE2b-256 7d93f394003ee199f4731a2c971f254564413409533fa0ba5a092256afdf2653

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 132.1 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 35ddc79d8933dac55291a9e5a16c12bf1c359c0d5609994feee62d70f007997a
MD5 966c128a8c0e3236d14856428c6423f1
BLAKE2b-256 4261d5a6d2b4b9beaf13b59a3ed330c2a130c0fe9d6c5b80129c2d2fe7250f33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 07df269c700df15f9fba0588e1742429ed6398a3a13be6799be418c2b7192dcf
MD5 4d82356d5ebb12f3ada9810f333ba841
BLAKE2b-256 a7369c2501884dcf0b0558b838125eb2236629f88451380b6654560d40b9082f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e8fb8c9ba4c5614cce4557e8d2cb6960a721861abc55582ecb0e90b951b77b72
MD5 06e2bea906b06cebaed6388d663cb7f9
BLAKE2b-256 964f3f1e5d83c9c178068d64da378cda086fb923a0ca65f4fa95dfc74fecbdee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f1396555bbab98c48370c5a97326b27cf8f0ebb2643b902a5c8035beece2d7d1
MD5 c15fb2c962c373bb0ed3bfe924f74b2a
BLAKE2b-256 c6ef0f78ee3296a07427819caccd4b966f152dd009db2262a1e182d0aca8b240

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 348417a856edc10a2cec457af75a88c2cd400c019470ba5a4c195255d7d41bdb
MD5 da583906401f46d7b6a5422893c5764a
BLAKE2b-256 e6f48787331cf4371a0388933df798c0f9ed8cf587cb2834b62af3f3e05ee056

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.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.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.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b00c8be064e940f368936342328815c33bd527664a2a5354da398d0203da4474
MD5 146d5667c34f102189a3cfd54558a454
BLAKE2b-256 fb9db3d79f68defcebfd05fbe7903e0bb6939f5fb04bf9d440c4552ba83f3dbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 145.3 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.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b50e78fc020f39707e44e28c395b27f2812b8d641052d8af09213efcc7040a6d
MD5 e089136f90b350ccf21c56f6bace0268
BLAKE2b-256 190926fb74ab315dcf8c146e1bbc4c6efd2d807405f288280a747c2db281b8c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7c144e193a82e1f491d7e2b22d47929943226f7228e02b163e3f392a18537caf
MD5 a456fe4fd2046c736417148da565dc6a
BLAKE2b-256 06b06d8480415102cd792bdaa285cbbfbe43a2c430d3e9f5ddf510c092bf6dc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d7d04ef252d9f8eb4a05886d5caa4891a665d716c939dc53ec9f34166d264899
MD5 eeeaa368ba3dcba430133c5873e241a1
BLAKE2b-256 8cea90a43a233c3936871cd220265e60df6b5d7044216fe637bc930c0e433464

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e323fcadc488d968140e8d275ec35976aa819d2e346aeea50a674f6a06ec2b03
MD5 6ee75fddbbb5c75b5ad827a3fea7df2d
BLAKE2b-256 667594be87daf0e78318cfef7c7d6fb5a8b82ffd48e3cde19e48c7c449109c79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b1411960ea149c5dd931671f2edcef0c89829b024873f94d7c1b09d0cb6cd2ab
MD5 f466f106ccadbcd02f07e1b864b27a49
BLAKE2b-256 ea41926255964c9c7aa4909b94767d9ccaa4d7fa754bdf593a5e938ac87654b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b12983265137efd8d152200d1ecc0ab5fea7846f8ba82a753375d6dfe279a1fb
MD5 a392f6edebae7f9ea277aafc6c9a801f
BLAKE2b-256 00724b75e9ba801c56be4a2bb81c2949be01b33e5cdb022d190ad0768c39c2b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.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.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.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 efc1ed6c39b831089ad12789b9e00d31a55ffe757321ee284dc79f556920d333
MD5 3ff91d99b2fd607003382a4e1d29ed3d
BLAKE2b-256 7987e16294cbfdaa41bbd875f8cefefb8f84f2eb7b2b1e25cbd02c86ba751b66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6492e112c19dc8312d161e2d80a54711295eea692e1efcc099931d6dc1ae25f
MD5 590efd58205599f3123bfde3e6c5307e
BLAKE2b-256 0aabea1150caf774430a1934b08241b723fdd0e97131f4e6a066dc0c06a58698

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b0821c34ca6a9776d2b515db2428042b7f901be6b175ff15c489b387d38ae762
MD5 2e4d92259aa322cbdac6575511fbb9c7
BLAKE2b-256 fb22f4c71095de27f75c58f8083a622388f42867cd6ef0f3c2156aa32b92baa8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e74d53971dfcf0b895f9a3dd2b618e167ee41e348a4d070d80ed262276aa123e
MD5 4541a6c6ae4616b746c4a10a9623d1dc
BLAKE2b-256 4bff185d7568ca2dc99015662d9b835d8bcacf106ee04eabe3921d5a714368b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 15732cdf9fd233e7c48cd8f36838641b0f940a7579e1b65306a9e3f34c000923
MD5 4caaf0373b10b0b61fbfb30d06959eb4
BLAKE2b-256 2302ecc1ce30ebf286c4cbb3bb920d6dd90c04956089ab3a11fd5615d4722455

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 575e0b7d07ac0e9c449a389ce8370fcf0cd3da058601b0bfa06f9954a3972464
MD5 0990bc4301922d26dcf3582a9baa410a
BLAKE2b-256 fbf980795bbcc5f4fb795b3a790b0acaaddbc689f72c32ca954571d353b4a3ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5ebe962e5f615e643e56ea2e0065b6b002b3f2f72dd550677ef43bea3ac3e6d7
MD5 17cac7fa04c997198d3443b0d8b3f00e
BLAKE2b-256 ad9792df936c677fb69544aaa81a445c6d604851f328e67c8832031c4a3c1861

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.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.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.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e8e12f291efb2699382ffa864cac7235b94193372c28d087b6ee73bf018ff2a0
MD5 399b809d6ac0b33ce3a5385d8c458445
BLAKE2b-256 a1fc8b026ffef2b87b6656a447fc00c0648aaec4cb8592c86085dc4283b3e350

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0b06796cf9586e66ab21c51b5f989c685ce272c663434d901991da6a9fc218f
MD5 646af27d7d5e7e66e98d6a81fe7ffe61
BLAKE2b-256 d1add98a8e8e4226dee9c403c3e7eb527c4c449779b928cce0baa4cb516751b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 9878d8e3384fe36c0471bb831db77ff5c2097d29c19870d6f7d0fb979fdb5dff
MD5 d5776a33e895c13d3de43f7c8e286a78
BLAKE2b-256 7b900bd32de200f2ec223589eb75230498aac2c3a3bc6ecf055b2d55e739e36e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 acd22c763eec0d05cf08f3a8edf65c85008ae5537a349421f0ddbe9d8e574fcd
MD5 e8731ac2d02f0d45b45c98ba3e819ae2
BLAKE2b-256 1a6f926fa3e17e83b0070b7c4b137f96b92ca75b22d5a97707fe7e334012d154

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bc154951fe56c5676f090a958d3414358ddf11098894d7535aa3fb593f785405
MD5 8e6c001d382419337826447226f1d277
BLAKE2b-256 25dc793bd09f599de990ee8d1f031810a74756390dbe7a06b94b65f975ce9400

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6bb1374734d52c09107409bc1f6c51893110475796cc9ebabed09c078a0fc2c1
MD5 cbabe82b63e3636c6bfa6023ff13c4e1
BLAKE2b-256 05bcb1cbdef9496836815056d9dd84d25d0dd3a913dceb146ed6c50604ec3594

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0aa1c7bdbca3144ce28c91fc9c106f6b849a714d0dc5a52326b9f5cf366321ab
MD5 2c0506fbf2e4d5902246c7ee97d26016
BLAKE2b-256 3b6fdeaf428ead2258cc7a25f3a064e21d76c40891bf86671abce09d52ca0e18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.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.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.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ba7f421cb19d8fa06764b46338fec58ac1257d45dcd1287175f6507b2db55dd1
MD5 fc4016cb5e4023abdd3b381c29e0c832
BLAKE2b-256 3caae5bd7ace78174d2a0a83f06730f0ab7ef575157ac41c0fcb50fbfb18ccf5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b30abe309487493ae487dd3f229fa6959c9196cebf427f509bed98b3a7ca32e
MD5 a9c7c0be1bb9645072cc378404fcaf38
BLAKE2b-256 55194a0fd05bef3bf270bf9dddd22ec1b86b4d2e315f1626672c7edd4d2e853d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9ba3afb2cf31bc6c53f4974b7625b6a7c449000801c947b9e1a11367fd17dc1e
MD5 f33ba5f34198426674e12223e825db20
BLAKE2b-256 c99aee22d34a1e76e3713f8c5fcf9e56a6e249fa961e94de33a2bc0d40aea090

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 90798d3e8e9c63cdb35ef9c532140e98c726cfe5b8b8e45f44713b6059aadab3
MD5 4c6612cf4cb58b711818fb8a0756a741
BLAKE2b-256 71cd9c1be4268cf70b84660db087c0af4ffbd64b29685c41ec945b562bb786ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6f46889db1b680b628a7cd9a03c28782bf22c37aeb39ca66399bbd14eeee4f80
MD5 83983cb5a4cea03ead4edf6c633dab16
BLAKE2b-256 c51888cbab28cad77aa1374c5d90f99b6496c1c99e81ca91ce9deab574722692

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e6e6d44aa7d8ab9bdad5a8735b879615d99f49764043554c390ab96997478d81
MD5 d4aba35321cff372fcd85c058de9606f
BLAKE2b-256 f7647d7093c37d0c670b4adcdbe3d8d89e3d02a6456fad99a8e5b9415dacbcea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c4c25c0d26a78a1da22ed3df93dcd94ecbd8dba40ebf8a82300f0de14855dd68
MD5 73fb4186500fcb56cd0f85f27f2802c5
BLAKE2b-256 2b0421f6735463bb4be57d0388cef4ca93b1ca94a1b83c56f3a889c3ccead5e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 732acd28c2bf57fecb7f362b929978d87fa2c33fd25f0031de8839193fc6a28c
MD5 47a0c8a5d52fcad8a173b7cd3b4957e6
BLAKE2b-256 da8d484c1e488754bef82edcbb20ee2c4cd545cf4a11bc04666fe85be455e564

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b8061e8c78cbf9608679a0b66d8b8174b247dfcf50c4f111bd616ec60beab60a
MD5 5914068cab4b9c1d53250c2e9d07aa89
BLAKE2b-256 4896b0b1e5462298e64cc45306ea495b2e387ee8f1b7da7d8a6d1dd570f61422

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c70dfd81afdbec6f30da0be2a94aef6525451738a1361f79367cda61ecbd9531
MD5 46cea7ac7be201e38fdac1869bc86197
BLAKE2b-256 456388a5df00a17fadb67f42f506bd9901086dfd97ebbd80fa2ce961397a6bca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.0-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.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e860eaa0678c0ebb102126afbab12d4192ec75ef7012b684b2226d76e9f69953
MD5 a80af924bf6e571a71f70c71a5b8920c
BLAKE2b-256 5446d5c242b2201aeecdf44879ed43b33579e082d7bf9901d844b40ba7f7fe6e

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