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

Uploaded Source

Built Distributions

rapidfuzz-0.12.4-pp37-pypy37_pp73-win32.whl (91.4 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.12.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl (174.1 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (141.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.12.4-pp36-pypy36_pp73-win32.whl (91.4 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.12.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl (174.1 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (141.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.12.4-pp27-pypy_73-win32.whl (67.2 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.12.4-pp27-pypy_73-manylinux2010_x86_64.whl (126.7 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.4-pp27-pypy_73-macosx_10_9_x86_64.whl (92.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.12.4-cp39-cp39-win_amd64.whl (134.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-0.12.4-cp39-cp39-win32.whl (91.3 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-0.12.4-cp39-cp39-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.4-cp39-cp39-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.12.4-cp39-cp39-macosx_10_9_x86_64.whl (147.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-0.12.4-cp38-cp38-win_amd64.whl (134.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.12.4-cp38-cp38-win32.whl (91.3 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.12.4-cp38-cp38-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.4-cp38-cp38-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.12.4-cp38-cp38-macosx_10_9_x86_64.whl (147.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.12.4-cp37-cp37m-win_amd64.whl (134.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.12.4-cp37-cp37m-win32.whl (91.3 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.12.4-cp37-cp37m-manylinux2010_x86_64.whl (2.7 MB view details)

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

rapidfuzz-0.12.4-cp37-cp37m-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.12.4-cp37-cp37m-macosx_10_9_x86_64.whl (147.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.12.4-cp36-cp36m-win_amd64.whl (134.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.12.4-cp36-cp36m-win32.whl (91.3 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.12.4-cp36-cp36m-manylinux2010_x86_64.whl (2.7 MB view details)

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

rapidfuzz-0.12.4-cp36-cp36m-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.12.4-cp36-cp36m-macosx_10_9_x86_64.whl (147.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.12.4-cp35-cp35m-win_amd64.whl (134.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.12.4-cp35-cp35m-win32.whl (91.3 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.12.4-cp35-cp35m-manylinux2010_x86_64.whl (2.7 MB view details)

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

rapidfuzz-0.12.4-cp35-cp35m-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.12.4-cp35-cp35m-macosx_10_9_x86_64.whl (142.4 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

rapidfuzz-0.12.4-cp27-cp27mu-manylinux2010_x86_64.whl (1.6 MB view details)

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

rapidfuzz-0.12.4-cp27-cp27mu-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-0.12.4-cp27-cp27m-win_amd64.whl (87.6 kB view details)

Uploaded CPython 2.7m Windows x86-64

rapidfuzz-0.12.4-cp27-cp27m-win32.whl (66.8 kB view details)

Uploaded CPython 2.7m Windows x86

rapidfuzz-0.12.4-cp27-cp27m-manylinux2010_x86_64.whl (1.6 MB view details)

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

rapidfuzz-0.12.4-cp27-cp27m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.12.4-cp27-cp27m-macosx_10_9_x86_64.whl (95.5 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4.tar.gz
  • Upload date:
  • Size: 55.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4.tar.gz
Algorithm Hash digest
SHA256 40481605839b6b1edb10127b15eda41125e596910685efbea0825318b2bdee59
MD5 ccfae1423f42eab761d449c6a2c678c1
BLAKE2b-256 a450ef41f39b1713ac3eb3510beb8bbe82650602cc78ddbd0dc5e6b1a310caed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 91.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 c03f7a00c5f212bf6fc42af4f09e3548f6655dc7901b6ffc98b32d990736fe54
MD5 d50a682d568f68e3860bed8eeb9829fb
BLAKE2b-256 23f6f1716358d2fe7ca3e20ecac16d28c78b1b2a7d991b44c8279d570ab5f547

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 174.1 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a216114f75a4d301f22d3a2bd1cd8f623a9986792a6828a7790d39cdc463474c
MD5 79f4679ecbe90354a42ab8ed932e64ce
BLAKE2b-256 97397e10be36330b63773a30381f019f85d8ae87107072244c198fd93c3fc980

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 141.8 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e9c9c41cfb29949bf86a55d9d5e1466564dd81cdea0b527fd3fc022034b612f
MD5 8634aee93278815e2788f1b223f5d1aa
BLAKE2b-256 853f65b8d5e6e8fb378ded9e4d545787d2957d030fb82f07e009d5852c0ca163

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 91.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 38d111d7d36c61562cd66fc68cd3ea9265b23a3c62b0628886398bcff8f34549
MD5 14cd0d87dfb81d700158be5356847b8e
BLAKE2b-256 ebf3f87294a34ad3f84c8c1da132dceaaddeb04a76d8a418d6a4d77074df19f9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 78e3f22341cca739220840cd1ae1dbab0171632cb488f4e1fdcd5a27ed37218c
MD5 3bdc320da2dca9d35501095e500410a2
BLAKE2b-256 a2136fe79328cc37445d8bbad0d5acc7b56ca7ecdc1bce178c0ad5d61320f7c6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d66086f996b06d2cc6b75cd275bf2b97d56fad3e408bdaa693e33117a8c450c2
MD5 4e20b31016e1e6b8ca9020f0528e9104
BLAKE2b-256 ad3b5a82ff6349dda8ace9a6905945c52b3629de6fadad195e83156aba812d1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 67.2 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 f687c7e5fab7a700ac46d59052d7a96b9d375d6e33e3d1ce726c72d5908fc3bb
MD5 05e2a6d8a01eb7f38e8089eb4a4c9dc5
BLAKE2b-256 1d1235911d4827cddb63699dbe5e255e01b2498e8b9538aa01ef7645a4cd5478

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9e555aedba45d3fb54a0c772d16efffae9dc1ca4f7abc60617c96151a839559c
MD5 4eed39c756898809c26e23dadbe4dc6f
BLAKE2b-256 5373884beaa5410801c4a7cc8613d88f91e8f94196d4526a17b59699aa617456

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53c8d6b41bb73efbdc79da9e31aec195c1b005b0f3eff8863e88ef635fe82341
MD5 ca07054f2dab0bb83a984059fa479d9d
BLAKE2b-256 c9ec053b07ef7989feca1fffa456182576ecb46c6b8081abd9157fb618e9d482

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 134.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b30b6d2295de243ebb57d9b3abb31ed9241f58ae10ba6ea9634489de1779aa2c
MD5 b150ddd7d79efa01dd3a6886cea981c3
BLAKE2b-256 0ab9eae0f86faf1ba7bc790f85b1204d2295b43aa0bc95fa44c16498301349de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 91.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4cbca7a3e30759fa714b75f92f737e3929acf6d9c703353743b92eee009954a5
MD5 a78175be3b46c53a34f0b8811411fda7
BLAKE2b-256 5fb1f7e1331cb0f4eac710053fa22416fa04a30e020ff95e950938451bbd85a4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 26f8800689f440305085abdffde36552cef549b2a9f286712a8f48f97fb7a647
MD5 f5db6d66e8b8652a761ff9c1ba823e76
BLAKE2b-256 ca9e4e6da650a0d9df611774b82f889e3e6607c5abafc67e737628b1270690f5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 18000e790618aad76877fc1c42ff065dfeb73b607eeb0c70740f6ef5df0aa352
MD5 b5a690bf2549f83b3376c46e8a900b1d
BLAKE2b-256 3026fb3669535e77166ccc10cc9fc63816a5357fabb0b1fd3f91e05b674a1f2d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ca395b5d22b93dbbed5ab2de751874c6713ebdae283c1365df9eea965721396
MD5 5c8d65293637516fa882f37cde77edd9
BLAKE2b-256 682e1b4d5f43c7262ea64eee1394920959cf7b8b3691a9fd7f5b1aae903d23ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 134.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0c5d3cecbbbf0112b32199e0057e364bcdc6116dff15dbb7a69ef0205b3d50ab
MD5 c28245ee2a84b69bac919a4cb254926d
BLAKE2b-256 0ede8ccb56b2ef419d57c33160cb36845b5b69741001270cc4ee55921d8defe9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 91.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e6a3f91e2d54ea67d2fd4ac786c4618818613c0f9a9e390c3929e43d0f20355c
MD5 fb9eeb40467eef491f08e38d89be9c07
BLAKE2b-256 c92323fc255d55de43b8f376042659fc18a80ca120b491a87a58695f4e20c0fc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4862d8b889153f54a4580f4b84e5b772670e3bd59654df5a873e7b42d6ecb48a
MD5 fd4b2c484766c812382eabdc14a62ac7
BLAKE2b-256 75faa7436e51e295fb5a6de4e00cbf233407c97aef4a8155563c957fe7b03a60

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3747fe8d764ffbbb5d0561da4038e2eed31e2fe51b1a8bb896156349ccdb11f8
MD5 4c2eea8295b41f86b0c6c2396410e75b
BLAKE2b-256 6fba333dbc9e07660d6401844167e12f10f33e7de9d7c9797062482336d3e765

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 608d1730ffc8c836c7df5cc05158689139b99444d1e184b4cbfe50a25268aa48
MD5 e9fe852411ccb1d50a1c42a8cf535871
BLAKE2b-256 fc136a249ecbaed8e041168a11167802b42aa849d1f0e6ac6e90d23a5ce13b39

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 aaf566146def929a75576472016c4c0795333ecbfca2c34b32395af7d89816e2
MD5 106953211f8193322ea6ed55e887ee1e
BLAKE2b-256 1d48e40e42f73a318c3e237bf07b4e554d52262f9ee59a3f29e828431de71fa3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8761d90f9598f6b3cfc73558cf67d3d314990bb164fd2b889910a1841afe941a
MD5 8bba62e93da5335f87099c12170eb845
BLAKE2b-256 9feaa878e2c38005cf94e5cfdbf02e52b60d9c489583576c43337256ab5129e7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ad20d3de4d6d4f2c6b36aaca026e9dbd245369fd6561d49ae65599c4369f78aa
MD5 88616720ef0d303fdc899d7cf60855d1
BLAKE2b-256 040cc6dc89d1e9711fafe0a518ba2f4babb8b380e08f0d03839385675ebdd340

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 41197ee22853d5d072e33385897e2030687b89eae3a420be8778c985a493ee8c
MD5 12c61769039cef16f9184a6e92d74879
BLAKE2b-256 d39707a73d5b91b308126c6bee7b3fe887985621a5dc08ce08dd4f15cfb6e0a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19bf98d764ed70bb5fc3bb128c34ac0d5b2d57a292d41e8875d3cdcca148564e
MD5 da46c29db59107fe670631c032bcae09
BLAKE2b-256 3ff17ba384d5d1a4edfec313b4ac96a003f5282db57d340c4e9aaefe1c86550c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2cb6de9fd5994f79760421e34788b6b5eed248ff4209a320ebc2df6c6ce346da
MD5 6c32859778e2908a8c030892775a995d
BLAKE2b-256 d8a864810ae77a21d64b509521cec730bf600562f2fe1adca78f20d0deee53c6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2f0aa9150ce78df8d865236d857a20cf4689ddce957b95542dda534e905ccf97
MD5 a2d9d183d3c24c5c4dbafbbb09a29ec2
BLAKE2b-256 9767d92a0d33c6f0c3037569c08db5e77d417cf38b6613e138ec927c08707c83

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 62db33ae0b98db6e59fca5ab4ff3bf5c6eb68ad462cad3d8cc2d90d2562acb4e
MD5 a772f26c495453bc1dd02b5093bb6a38
BLAKE2b-256 4c5ca6d15df01c6bfd33cef84f302b4f07fe0167d77b5431a11899614900d28b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 800f2d6115ca10fd99126981edb9315fd66be469d28265038a6c799c0a03489a
MD5 17d35242f5e2a32357a29e710b0bc081
BLAKE2b-256 1936f1ffe7defe298ca5f56907eb8a38d6c714007f5f172f7445bce45a00a018

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7dc21cf842cb4228ac95b1136d179e809e393f2cce5a7d89d31f9a794ec729f
MD5 be1619045921a7c6feb7c9d0d4ab537c
BLAKE2b-256 052d6030e69932474c0f411090f69e820e1ebdd7282cc4b2eb3e8a471b11564d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3a2e3c7bd643354839a04d0ab4ed8b4c9335f8ac51634ce643e195af107eda84
MD5 f8c2a9071ea7440392e962c99b808dfb
BLAKE2b-256 c4c2c7e2eaf228df0e69f9b0c193fa352c4308db75dd5d256d12ddac01e72cdc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 2b039bdb9456eca261b9776c5c356318cc1d721fb160ea08f0257b576f0e0366
MD5 6e4ef337fbce215485c5bfca7163a7d4
BLAKE2b-256 76b0b218eda9d13825749d70dd7683255df25b98e49da89c9195493185107794

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2b4d6df7ca818ecf61b8eb28abfc1aeb7281ba17eccd73dad7f31958f9906cd8
MD5 6de1afe3c5ee5044faec79711fcfe65b
BLAKE2b-256 43d3c8680944a9f2a335a10bdec3b44aad8dc0c476446662160fb03b8114c2fe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 899cd0fc8078d0ad2a5d28486f72e01d3641c5939f672acdea4b42540077852f
MD5 eef4de6d19dcd20ca8f908806d9541cd
BLAKE2b-256 6d580504c9f1f50e0565d299f7e2aa63fdff76ca1a2def891f18c33561b57c58

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a611deeb84ee0bf7d74895f187e57fbd1d9bbedc615814feba204d5e4fdc2693
MD5 ebfdae8e08f9b70095961bbe911d7708
BLAKE2b-256 9f5303bbc0d0eb631d51d774830cbc3054f10eb2b299d4cfb49cb792a4ae23af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b9976a909cacd9a82d1a9576d0f37b37ca79c7fe5903f513a42363b5a96bab4b
MD5 51a6fb0f5e90ee70526dfd86cbda02f2
BLAKE2b-256 55af1a3785722ad823754b80c108859593d095770a66156cfdf825044bc95a64

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 89506e0be028b93111208e0f2db8f6b26df3b42228e90c829f8208a3cc70a858
MD5 45324fc32112cf68949692d30c0ec2f7
BLAKE2b-256 bf2b724ee606662f52cb554f13eb9ad9c3b3589783e881045ce4994c71cc9e0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 87.6 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 4b93303dc9148d3a13e0b234ef7847fc4ab5f5567988051f7151249cc8698ad7
MD5 1b0a82a6a597919cacbb05bae0d18dcc
BLAKE2b-256 0ee6b0e9ad77d4ba44007838fd0936013bc01c4b8f5d34927fc78bb752cb09a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 66.8 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 fefcb11197c98932f57cd824cfe7263d99dae6967a3c9fff2865f54495227b15
MD5 11c11cc2aafccc699fabb72686ee41ee
BLAKE2b-256 a070743e713568231f117fc2a4e2cdd571da081eeed17b4375b83a64939db82d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.4-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.4-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aaaa87190ad886f310c00ebab6b55e6c4f462a7b041964d02a0ce4988618a180
MD5 9509285d089365d86fa63f2a314bc556
BLAKE2b-256 f4a635b83184cd65dda00e17bd0d39fe09e363bc699f326573be99e9d9e7eb29

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 14bfc9c5d88eefdaf60e094ff98d8b4dd76cb720d6a55518cfb82d83434d56f4
MD5 6d58717e5f523e6dbd792656718d24c5
BLAKE2b-256 acbad0f58b03fbe282d1585859af2b7b530ee9cd2208d61489c8a55f9734ff27

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.12.4-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1adc2b9abbadf06f6db8960198e7b256a559a7b9feeb5980830285b982b810f5
MD5 5941463aeb2653c0c683bc7a19bed332
BLAKE2b-256 3b30399d78e798fcbf44f9d1eb9df7e111e82918fcc34eebc2ec6331ddb924c7

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