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

Uploaded Source

Built Distributions

rapidfuzz-0.12.2-pp36-pypy36_pp73-win32.whl (84.4 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.12.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl (164.7 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (138.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.12.2-pp27-pypy_73-manylinux2010_x86_64.whl (119.9 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.2-pp27-pypy_73-macosx_10_9_x86_64.whl (89.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.12.2-cp39-cp39-win_amd64.whl (131.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-0.12.2-cp39-cp39-win32.whl (85.2 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

rapidfuzz-0.12.2-cp39-cp39-macosx_10_9_x86_64.whl (144.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-0.12.2-cp38-cp38-win_amd64.whl (131.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.12.2-cp38-cp38-win32.whl (85.2 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

rapidfuzz-0.12.2-cp38-cp38-macosx_10_9_x86_64.whl (144.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.12.2-cp37-cp37m-win_amd64.whl (131.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.12.2-cp37-cp37m-win32.whl (85.2 kB view details)

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

rapidfuzz-0.12.2-cp37-cp37m-macosx_10_9_x86_64.whl (144.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.12.2-cp36-cp36m-win_amd64.whl (131.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.12.2-cp36-cp36m-win32.whl (85.2 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

rapidfuzz-0.12.2-cp36-cp36m-macosx_10_9_x86_64.whl (144.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.12.2-cp35-cp35m-win_amd64.whl (131.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.12.2-cp35-cp35m-win32.whl (85.2 kB view details)

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

rapidfuzz-0.12.2-cp35-cp35m-macosx_10_9_x86_64.whl (138.5 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

rapidfuzz-0.12.2-cp27-cp27m-macosx_10_9_x86_64.whl (90.3 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2.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.2.tar.gz
Algorithm Hash digest
SHA256 c3abe5135b565ef8bee4bcf8fc226dfa43893476306a32083d51ff6c1db5716b
MD5 07fc14a5cd04054a40dc509727aa3312
BLAKE2b-256 bb1e35675fd10e78e4e568dc04430f6f044bdb478ed0213c01c8304090d49dc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 84.4 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.2-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 114ea55aee6fc5e814cbeb83baec2351cee2326ace1113197835b81d81fac20b
MD5 ec4d3087a7c6b63af1bb639b57635051
BLAKE2b-256 5cba9d30878f45a762e28bcee52904ceee47e72c259e02cd3071f2477d229df7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 164.7 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.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ac0b2c2a6e7d176448ea100896123378cbd45d6bf1f78670279dcd18c78d34a1
MD5 53a08b521e9e567dc1c88ef064239df4
BLAKE2b-256 81698b299440172a5c23519213f7675227b54dbba1b1b9fae680efa4f7d7c7b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 164.7 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.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fd733d922116f81a5d1bab6fb4402beec387a5cd40d437ea2f70cf74ff599479
MD5 26113729361cf2bb23f3ecea626334b1
BLAKE2b-256 35a8fdd958a23fad1ae138c97af7a6e10772498e88aa724044dec046d54968f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 138.5 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.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 129573b980d7b54e0f8b6cbe9cd369eaa984fd67ea2a50ca4c2b033ff2b82d72
MD5 e4f97fd80adae6c0f53ff5a91128bed3
BLAKE2b-256 6b4da6cd0b7318d8d6526377922855f6cce3122202081c309919680c5fddc0bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 119.9 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.2-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 44a4b8e57c93b71e972aa95c8a7f4da64bdcbc64e8e28e8e57aaea33a84aae3f
MD5 8166aa526569de5b3aace4e95b8b6b1d
BLAKE2b-256 14fa4f6b268b1ba19be729e3398547d4f6f771262ed9520f7db7c6b5d844aad4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 89.0 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.2-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76fb59c588eea862e5233a5d6219f6c316325ee89146f14a4fa68ebe449fa947
MD5 d7894efd554a734f7b014fd3f49f7510
BLAKE2b-256 f57b5ad4ba036a9effdfd460e58a87c59bc84840932e64765c35a3714c7ca523

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 131.7 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 efe928188e2aee49c404015190428b88b545e2477331744abcf169584924083d
MD5 4d26082f61e07b84bccbd9bb78d4717f
BLAKE2b-256 08bcbca35466928f99ba78d3d4172247463487c4b3e1742713ba70a431c97054

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 85.2 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2cfc6a9259f00729f2e7b3121a9957ec258036f030a71b793d3f1cf73ab4ee76
MD5 d3014cf5ed753f3b46d86a6c4218fa50
BLAKE2b-256 f522f1e50eef487f1dde91e5dd5b3361d9a5a32a5f00bbe80ced93297e4e6e43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 74827e87ed433ddd6e20f1167b3e16ff29e236c529054bec5b89c40cf027a339
MD5 ada2c0ee8c9bbeedf4f7c89e3f74bfb4
BLAKE2b-256 bea147280f014e59609c3687d04470bd1eef087d07d0509eb39b4b3cc309a745

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 801466824e7891f3edea8b92355c9bd1dafefe442e31a3fb7f8822b14e7de1c1
MD5 6cb8aee91fd71eeace165bf1fc7ffd5d
BLAKE2b-256 b48d3ed0afd319c5318999d789ce531f11987f5d93b91da200d5139397112a79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 18d6c9d64bdf11b36cc5d08fbbaee4d14acdf2c17cf7433a866118eecc040e55
MD5 38ebc2330e712522ac8f86a480ae5a80
BLAKE2b-256 6fca222d1c4434d58048891022c1ddfd15dfcac9ee72903210b300f0e05c7f49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b2b07295b3880c3d8b5185b402b1d6087636535e9c6e25e6ca5e89d40c01575b
MD5 531f27b2b27cd030f05c345541a142d0
BLAKE2b-256 4a7b24dd45edfdda69e17833827a748e8ee176a2dbdaf2bd085cca3ba29f449c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 144.5 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.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a622cab9d2dde55ea407f69a6222cb388fd943ed18290a7476450e7c6fe1a61
MD5 e167ae6203d896d3b9f5aaba4c52d2d0
BLAKE2b-256 245dd0e8dc0124dca55eeb66ab20c1786e0a60b4c237523f5651a5179322219b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 131.7 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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 16a1a7ee65030f413f1d40017daad20e6f3f5f0ad3c0b3a6a774871c89416062
MD5 cccb3c939743a94d3c878f1f04a40baf
BLAKE2b-256 ef86c0cbc35c4db33483dd0ac1a902808b79021c418d43d89ed92c0145802438

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 85.2 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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 03db5c447532f43f2317217c32c534b80c62655cb9b0153f30494f86413b34c5
MD5 d81bf5e200892d7f43e384870e918cf3
BLAKE2b-256 92ffb8bcaa1b5b68dfd3efe42dbe349aa1c7737fd9ce597dfe1aabc2986a9c8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4b9a0f6c3d78b8298336403d6bd4f89f83ffc9f480d3edd23da656b12ad56dee
MD5 8a3c660bcb0eaca251c6ba14b979f225
BLAKE2b-256 f3069fb8412952ae68827d71dacc36d465591f157372c9970b1c1f15cc642197

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6ab4a03eb6f68165ff142489c0c969aa4395fdc668b5bb1bf779d4249448b420
MD5 2b6c42eb01eee0b7f357a79adab1514a
BLAKE2b-256 bc0b6c8078e615c9a380715c503c81edc303ecde36bac08307c80c08c3429094

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ca87b03033ab722cfdd81e037aed692b078711078588af940f6e8f9822ef2158
MD5 07634ad8063cff83d7dce73cfcce0e3e
BLAKE2b-256 c22a36f89447677989ea15b45e7ea290428975f803af655969c7ad0781e9aeb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a60e35d2921f12b4b68f956766bcfb213bb1af22b1948542a50cb27674bdaf1
MD5 f1cd141ce335d573fcdc4d9a90bc7bae
BLAKE2b-256 c2259c69a0e5aa48b02769a3d15beb564239843a620540ad6efdea079ff39a95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 144.5 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.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7b3e018454b931ee143fe1f42fb48fc0a7f89d037886a009425cc232e8b01aa
MD5 e7d1391d8ecfc2b6f1c1674cd5e3389c
BLAKE2b-256 e9e5e228713c7683baf82ffd48f7e166d46d50d422cbad3df03f5c83fc0ff396

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 131.6 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.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2d720ca0a40d014550a906127a9d1be99aac6d013c7ad27286e1160bcc03062a
MD5 f6b55e729bcc0990923bfb9b42d13aa1
BLAKE2b-256 50031706b747d929ff7db4ae290bc88cccae2667835d196796105868fc165b25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 85.2 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.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5ff90d95a623e1baa0fe7416953a833a435c1a62715023ccd9b01bfb122f280b
MD5 cfc6ab6a44a739688ffeafa73cf62412
BLAKE2b-256 3d6352b4a97a22ad74ca29d0b793d5fdb7e175b14c403a3d421f6b215b707f15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 49be7bbbc39588cbfb61220fdbbdba0d2557d1a9f46a19c4416dd0ac95525647
MD5 76586499b78dff222f18ed116a276b07
BLAKE2b-256 aec56c0c449c7092a6637d2b55da7fbb13650b743d5f73758bbf3eabc9bdd94c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b616815bf00c3d0b8f9192de607624c860b973332c7b3764210febb0aa66dddc
MD5 245c7b94660b171661a2b615f9c6dbc4
BLAKE2b-256 d4803cce9222d44ed932e281feaaf27b6bfd6b61d3cc2986d1c42ce9d899b917

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c68366ab9899feb647d6090104cb3cfb858abd21c7ae986ef346a4a779ebf57e
MD5 a001b6be2b9ed7801ff20b33cb17bcb3
BLAKE2b-256 e36f15f4baef172a4e937606b00f7ff06213e91470fc361d2346dce56523ac4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 660a3d97276e583dc5a8d143c54deb74a37ddb47e639e176616a36603ba0736a
MD5 76d712bb88a70dbcb29b242aa2f34e1b
BLAKE2b-256 4e0bbbe302893d27022a2331097b63cd3f2e41772ddecc0f34251abc9a56bcbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 144.5 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.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bae4024349b7599d15fde364486b4d113cc0035b4dc0b3489a3917dbc313279
MD5 32c5a0e5f54868e50d807c21ea02a366
BLAKE2b-256 d0b604c7e2c1ecac72da93d702e22fd4a78fba2f1a48556a33b4e9786b7371cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 131.6 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.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0249f44d08b52e1d7ca58a1acda9f181f35c455cb889f2110c28f938c0744c09
MD5 052627acc781cb64066c0f823fff81ae
BLAKE2b-256 8b90087e2a219c2ef1966f8749f80709dfa6340e6ba1bf8c2218f281b1636b0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 85.2 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.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2ba48e18a437cc4ec4c3a9a85e60b09281306e7380f5294d047b9e09417e61be
MD5 6032d2705aa06554313afae815e68ed4
BLAKE2b-256 3d34f6996292fa10c31bb44cbfd42d3796056d336f843f30a3724010cceebaf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 76ceb49a7960b495cd77b93f57b820115c09f9a04eba4556cb1f934cbb880f61
MD5 e955038b6bb782d98df4baa32384b824
BLAKE2b-256 edf9d8367e11eda1e1f48165c439c4451f0dd172c40dcce3557600125e7664f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 acce59ebcb5b2b2788647d57b703739119edf3f17a78249d0ea1f1882ae141b1
MD5 49e466c67049c08d9d6a4ec0085516d1
BLAKE2b-256 a144b0d55aca44a8116d3613708166d0678a275a5b28b8ce4ce75201b3a63c01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ec51553d9ba80b7d9561338d13b492b12feb7b9e116b2b7c19252af776857ec8
MD5 d00ab890f12084317d219cf0388dd36f
BLAKE2b-256 6db2c97c0b64c64ab3030c11163e41dfa97e8fcdd95b3945b537526f08030731

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 874aa719ccceaeb35113a571327b8f356b6db425b6aabaaeca653e35152319a7
MD5 afd2d89058bfcdefcbda31591140c9e7
BLAKE2b-256 23be3a40aa7c59464dbd676508d593ff292b8a09595c13aaae055a7a5e1e3141

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 144.5 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.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df7a2a59ec76103651bc522d835af1303965ba298bb067ba74dcb21e3ddc8380
MD5 0027275a67b8f588c48c11afc4b7da84
BLAKE2b-256 a19cbe84f6d7e97f7bf94748caf50e44259dfe2a79bffb0ffb195fb420a71d8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 131.6 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.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 292bfd6e46d77fe36581a7183a3beeb5056884daec6195215879fd60d183edfd
MD5 d2a1455211cf0c0a5981f2130843e7a8
BLAKE2b-256 4caefa7732fdea390e11816c0ede78b301eb506d1146e10639fe96f8adb6e091

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 85.2 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.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 2461a60f32ff77a7f1dbe3b60786077b9a30a9ab41d46fb4066e69614d5ed452
MD5 74360be62e637abf87633bb1ca689b14
BLAKE2b-256 4d7f51982c9cdfd06e77d7f800c85af8424db6455d1f6a6fa03bc22f8202f837

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 15a0d26e02fe3659fc19961ccccd6558b4e62509800089d056ff4f9c17393636
MD5 1fd518954f83d3f604dd7422c9ed013e
BLAKE2b-256 95987ac89a7010194e77696c5b20fca17fba0c4a502cb68ce7718d4c4fd4388b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 990854e23a7d18e22447551b7a9fa169b449d7adb5cafc1fac5238cd3aaa9866
MD5 9df75751ce46a6501bbbef3cbe35d02e
BLAKE2b-256 d20f43136e98b7c9200d85a27a4cbf86d3fc20f81dc3cede2a8ea7904b24f40a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d0df0c7db4004546c673ece67f646e9d1337fe212352b6d54f154b8cc6ce0afe
MD5 2cb4cdca0dbfe32864b2f235ed22d7d8
BLAKE2b-256 14c3de474df0c068844e6adebed069ca78fccb38d9a3f67224b3e7d41e8cbc26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 811ef7392e1b011fa03fc18a5d7724d72a4a5c2cf1c40a0d95ccd887fb004a6b
MD5 b07dbdcff0cf211185e3efb8a7955eac
BLAKE2b-256 68facb5e6864ab305fd2bbce36dfcb0d4a8c7aadcdced86d1c72b7f9f866f2ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 138.5 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.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4168b980632f940dddee00fa727d6e35e58cf987daf3c8cd360d9886f14b7099
MD5 7f20fe78d9ec3763b897e692bb261161
BLAKE2b-256 794dda0bb882cde4dc15c9c1d654fe457ceb07f3faee188910e3ae091ebab4de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eeaea2e9769b3f3a257659686e756f5173295e5ecbf3b2a52777732e3706aef7
MD5 f17a36ec5ea79798da67b4ca7260ed1b
BLAKE2b-256 10cc37650d9717c306f2500c721348a248eb87a3eaa8524c837250e89fcf9822

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 daad54db134d4891b124a7f3a8bbe4f26ee650bdc2c6883e1b7d6a4f5dfe5553
MD5 683b733d669d448cc2a28301009ec5d9
BLAKE2b-256 6fa61ed17a78f77c4fc432c031e1d13a6dcbe6ec2f24d4ee1cb1fcaa7679bdd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dddb7a7123bb00c41701f9d36cc5b721c5b31542a66662f0c0d54b00a625772b
MD5 16b64b6988a360d3ecc18ab10352a7d3
BLAKE2b-256 9e32a54a57740019056c64d1338550b4f6a50e5235dc1070dcb52b619995b604

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2c2dbd6b8cc73fd52d06e8a8e81e9bf2a3faf2b7a60e462f203122254eb90eb2
MD5 75295bda777dbf705ca6bebeae33ad20
BLAKE2b-256 be14b8dce67df2c965fa1506391168cdf578d600cc6534e89e3a63628f10f146

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 673de9a06ebf768de3897203168db42cca4e96fdc8f035fb4e6b1ce7ef513b25
MD5 2c666f0da03aff2f3dfa01c20aa7b3e3
BLAKE2b-256 d268cbcf3434f831bc9f1ea612cd421fa54b5b109e17c657d18c50bb7d6df54a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 34bc093576c0d3e17f441627b5fa97a48885cab47baffdf4b81fd5bee555b1ff
MD5 fc1d98c2574e23268ae11b931dea1443
BLAKE2b-256 890ca22168c960c0c6010e7c2fb1f188e8bfccb87e9f7dc52cdb2f12c4b4668a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cf03731f0a870adc3bab5aa3b35a310645a6741c6a7d695648447e851597e908
MD5 58ee05800a8290eab22003691b02e360
BLAKE2b-256 e81bd0c863f82ff130677c7da77a3308e8e78c52c02c0824f20bd81d7b6d8579

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-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.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2bab0991991ef7b0d3d514209fcbd7a77345054cce1ae634abeec002ed08f72e
MD5 09a9b841379aa1ddd48c8c4a5121ddf7
BLAKE2b-256 1b137ff5ff24005e8fd2c670a5144d690a97657f9aa57d9da18fe41c84c8a2f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 90.3 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.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 293bee9ad80a153e907afee4a3279b225eaa69ce0abfe2e083c5feb6c1197237
MD5 cf36ab73d324cf1b4b822e63ebb2152d
BLAKE2b-256 3424053c455b69fc379916cae7811c330e32d3ec4658a3903bb0a64ad655d62b

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