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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86

rapidfuzz-0.12.5-pp37-pypy37_pp73-manylinux2010_x86_64.whl (174.2 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (141.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86

rapidfuzz-0.12.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl (174.2 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (141.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.12.5-pp27-pypy_73-macosx_10_9_x86_64.whl (93.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.12.5-cp39-cp39-macosx_10_9_x86_64.whl (148.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.12.5-cp38-cp38-macosx_10_9_x86_64.whl (148.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.12.5-cp37-cp37m-macosx_10_9_x86_64.whl (148.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.12.5-cp36-cp36m-macosx_10_9_x86_64.whl (148.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.12.5-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.5-cp27-cp27mu-manylinux2010_x86_64.whl (1.6 MB view details)

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-0.12.5-cp27-cp27m-win_amd64.whl (87.7 kB view details)

Uploaded CPython 2.7m Windows x86-64

rapidfuzz-0.12.5-cp27-cp27m-win32.whl (66.9 kB view details)

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.12.5-cp27-cp27m-macosx_10_9_x86_64.whl (95.6 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5.tar.gz
  • Upload date:
  • Size: 55.5 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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5.tar.gz
Algorithm Hash digest
SHA256 74d09ab1224ba06fe8517534537540787a5ae0250385cad715eed592e947415c
MD5 58fdd5fa5427c84a408150307f78b17b
BLAKE2b-256 5b7118f80b6cabca6f1c159f89733645c427c9423305197a1751e2dbd6c8879d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 bd47fab9a701e13206a679b9cbffd87f3b9169e6764c16a06ce659cab8b32b17
MD5 326740c8ebdbedfc767d96f09acbb4e7
BLAKE2b-256 2ed898cf501eb098b1b28b765108e6ce744cd44b39555576e5cd8a851c8740d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 174.2 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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a3ec2549b07dfea06832fc0dcddb4ac324beb39967b6089de37a006558f712ce
MD5 92fd3cf9686e573acc21391eb4adf1ff
BLAKE2b-256 be0d6ad73c54c054f98dfc8bf9c0144c95fb37cc2620f06e26a5a44772f2a2d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 141.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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2edda066d0e82a5c4fa3062f514f01c43d24b52585b731f574412ee5ea52d58a
MD5 e5b360f9b306ce1fc8e4940680cbf97c
BLAKE2b-256 d2ff7567eb32cbb7026fd18b3abb655dd0b0d99db8bee2e37cc14e2704c26508

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 e86da22c301264a3ac97c981eaff134f6162eb8c6fb6ffc5fb6b2919f8447ccd
MD5 3cff4dfe13e28bf2dd1a81d982a606ef
BLAKE2b-256 3b81b71da8a46104e3a5ae6130a906f0d4a84ec10214cbb43cc26a0c8c015dcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 174.2 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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6d1b6f125b60becf71cd51f21bf977b37a8361b7b710cd85539b3d6c2d38c5f0
MD5 d91ebbb7f431550ce35cabcc06e403b6
BLAKE2b-256 064be74d187b5fe6ba6f13e284a0d2b14a39c6ddff03f7eb19e41b2f6ed2f6a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 141.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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1cdacdb5926cc6fec116a277ba015316cde1e7983c4d21b20f89c58423e39c90
MD5 2c0ee68c799df3c690b05b9dc243d7e0
BLAKE2b-256 28f5e56ef4dd5be911c2a5ec2e6a5c4415359c1a9b591895f7a124303667d872

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 9cd477fdd087776b0d6853f7ac48a0e024bd305418dfac1536dfc064b584a2d4
MD5 cfacf484a8e31f41f54c281343948db2
BLAKE2b-256 ebd1aa7485ce17220bb3ff6bcb7955239a63e8ed2c7de8e65d0eb40925a59297

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 59831c57af6d61d6c393b8ac0391d8a4e5c91c4015b223c2f4e31be644413563
MD5 72ca1dda2f5180e6a15de5de03fb2ec8
BLAKE2b-256 ba0b68d6ba90f5464c6d2389cf714b3fae32ac646328510cee88e27be7b32e93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 93.0 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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76a53d2dfd3d6d4deb5ef2ddba95f1ce4338252c0ac42cf86cb06848e3f6d2aa
MD5 172f96aa032a1e617c266ffd91f029c7
BLAKE2b-256 83c00f97341e54e96ffb74e6377d39a0fea5d437ab9d3822f7852dcb9c72a8ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d147972b80692d237d705ba18a210a8173df57b7de7f4207654da79e5eb0208e
MD5 e1a9024e94fc4403ca546fc9675aca7f
BLAKE2b-256 818dc53c7bf86d1d5884962c7c589b09263cc2d1949a081afd32603dc0fea411

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cd92b5dbccec1fc577d417310d83b0517cfed08bc2f30bc7ed23af9df12bba3b
MD5 faca30f4164dd7cef6e9057c21181e0f
BLAKE2b-256 0b5cb6be7803a3495ad44cc63d86f9b08e94c97cf6bf80a92edf246ffd82e58c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1bf733ec471295fec73be453a7a6773f6960510234219bbbb3efa684c2ac09dd
MD5 00734c9c759780492d02900288ed54e6
BLAKE2b-256 fca53c8b8d0db0eab55b997965ab1bdc0599384b223153aa89dbab76b4396672

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b5dfbbba21314226a65cf24cdf7f570eb583b517b08b0b673f2140b2ee496eea
MD5 367c12a267297e9a06c02432a399c18a
BLAKE2b-256 e4725c26c087021cb19110b20b963d9d650a4591a644cd579d22206e4cbcaa22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 148.0 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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 02c850e7d2824bb84004e0c01b15c6047ed957309d6f0bc6f79e715be6b08b01
MD5 5ce0513a6afaf9d6be885f49635f0f5a
BLAKE2b-256 060dc0bace8d4d7d65442fb6abe851fe43ef6395273e284ca625c9bf19c4b17c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1657f751fb0c8f0b95667334e1811e87e577aed5b7090f25f09b5e95c92ccff8
MD5 2d885cc13b1dc3fa2f0bd641795b0b2f
BLAKE2b-256 2a6ca66aa7b98a64d3c96fcebd4df1dc6ff426ad1ee4c7324f01fcabdff5b18e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 336673efcdb8e14f2e1c04d05de81ce0bd43d7e6445818c6deba1126db8573ad
MD5 ab0c29557c0b534368679663189af8a5
BLAKE2b-256 0d2dcd348b8572366b85f65f75621ccd51118d0687fd06d6c264d4912796788a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a2972f3ac5f1bdd20e3c6ded5c240d7a195cda39cd6d9ba7c398f5e308af357e
MD5 54eef165c765e7637ef04233c67e66d7
BLAKE2b-256 90a76a3667472ae5282198c6ce631c716c6309c7cd41a8e82df818e190ec76c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5073c76b6b4c23085ca585262b850f0a47bcf4e55e63216df1151a53e90e6a4c
MD5 ab562d5dff8548e709a212b2c0ef993f
BLAKE2b-256 b76f13e47a1389932840ea23981f2f2a6c1b9eda3e1e5b9a0ed8ab6bb1c775b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 148.0 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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f07c93d9fd64eb57d39b02fb0d2d2c154fa4587bffcb25c10ffb85feedfa6665
MD5 6ae0396da5be82775470676ebef12183
BLAKE2b-256 92384dc34df70faa177d4d3e8535ef2b981912257609dcb71f1d13a876d54f74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ef4e7c82fdf280c963be59b0221303f9a3a988815279047d912b7b134dd78aac
MD5 eac29280ef7633c74eb8c66783de4419
BLAKE2b-256 383201750c910c2fca5dba43575a133c99c6e717be1549e5bca7aff663eb3437

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d59aa2234e1b0fac97664e6776f7454398bfbdce0234c3714dc5c2d8827d003b
MD5 986b14b062ef7cba9d647384911ccff3
BLAKE2b-256 e3e15bc1b08b49f6c60524ffd8b88ffe4576b32756852e2a50fe2312d3d96ef4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fbdd4647d861db7ef6b635d78799c0c6e2998fe3103d1a4951da1fb468849398
MD5 5a66283d9adedc1fffcc0c85ad980c09
BLAKE2b-256 546a52ceead0d602ae7c75a1640f6cab4a984880b4d6c00e646a9f1e2309f74d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b8c02d7b49132e8ba0a50ad92e63f291beca574e79ee77e3606b2df92a199190
MD5 e39b9d0082215a6c4dd8c063e3b67d7e
BLAKE2b-256 09932d7dcbdf97c185a404b1d98e8ed27618f9abd0cc8a9d97b19f6103003f00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 148.0 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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c66a39459e8c7379d55d03c517885425b918fd7454602c2ba1aee366fca48c39
MD5 c6e7908ca557fddf6162570726e98c83
BLAKE2b-256 292393a6b10092fdf3f85d07467e1e690397843256d68ce69f3ef81075951491

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4bcca62c85cf3d1d6c05b376726ecbd914fdb40b9c57c9dfe6d1622b2747c02d
MD5 3faa5d7673214e6a93dfda5092b2a214
BLAKE2b-256 fe49a6a540ed9fb52f4269b558cb1239fe8bde6a4cd3ebede3e02bbb58f9d992

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 55d79f81ec5d179ce4250272b21f5f249463ebe85e947254f3892a951ac7fbf5
MD5 34185d48d88a5eed7c77cb70c2f9df94
BLAKE2b-256 7db6d13b28f7e230ab45881cd55f0f95c8f0ea6c3a82dfadc623dc1f6ccd512a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 909fc776fdc94bfc27a0aab5722c23e6d2e0f62a5fd2570e76a608e3f929b6db
MD5 33efd2e0d3f9a43bb1b1515344801641
BLAKE2b-256 30830602722c6a86267ca902d4ba317e07ad250929ac436269c8f01ece5cc79f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 692598e8ed18bd8fe327cbe7f02db4361ab93d19931b1644791714b4f4ceb859
MD5 a2063df7388d79c7b50e9f24213096d4
BLAKE2b-256 8f893cbf8fa44009772ca312393a2bec9e71955466343c3056d50315aa7ba708

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 148.0 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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 876f81e05442bf25797a0370049f6d71e169e7bfaece21469e95c894d6d613ab
MD5 78e932c4e0af77ecda2ea4977a6545d0
BLAKE2b-256 4d88e1e6c5a60da9fa8fdb95578b483279321de402a62e5b91f900b83a7cdf87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 80fc65c072e9b324c3bca01a2277a24731f924fc01891e7898e5008ed5a650b3
MD5 76139d32c13e92d2f1c15755bd7eb487
BLAKE2b-256 9a9bc5bfd6b5105aa33cca8d21ff15293fea995e17750b64f5a9af66cba5003b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b8ad3e45c4435a1c2c2d643a19de454b68d6c9121de5c33085cba650d6ab6099
MD5 3e3eaf17508f62696ec468d6fe42363c
BLAKE2b-256 ba608edfee02828287e9c99170bc251529bae09c944ac8ca68639f0e6d969e43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 68af6fa9fbf3a3a5687d4cd5a37529fa41a62b0d2df37d1b136133154a7c2c2b
MD5 f8d1cf26c0fe5a889d5d090e9673d60b
BLAKE2b-256 f38dfabfb0a6aa9109053b320aa5a3cb4195b151303f6561eba78e306f5ec854

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9b2252c0435f4f4b9f24b542d0b38eae7fa96c554c119f7a8ba1693fa37bddd6
MD5 51ef4d93fff20c8b70cc605c8bf26827
BLAKE2b-256 c93ab5bf95bb4980935155c406b2e6a0b0325f91c2f9521b1bea46225cf86d8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97be13f3239d052b91c153b6614eaa778ded2f6b313214d06c51570ae6274cb8
MD5 b6d6374e873174a54d7ff4089c736a2c
BLAKE2b-256 e0306e03d6d26b8635b3dad8eb3bb8e9d8be139ebdb32ea04f599b0b6b86de3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4134b087d5e9908de7e98c880cfb0571641d486d9a3883065ddb1c4d87b851a6
MD5 9418d6fa37f7db907b207c9f610318da
BLAKE2b-256 70f76331c7291ace4225b4f5ce873cd188f390e80cdad636d99457450249e82e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 baf9546d29c5e7cb82b981dd5e4270c75a4facd9387dd643d72d2cfb3a9176aa
MD5 f9a37cf1a9d72f46428bfb3a6ba6d435
BLAKE2b-256 a96b2573006148fc92f2939797f258c66efdd9d352c7cc96f212f899445be4fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 87.7 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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 a1bc6c9b5e02b8d94f7c18f7fb34467688d0b4e99a46e3103051bded4639ef3c
MD5 8ce2197acebf97e73723d2c281ee81ae
BLAKE2b-256 5e156d5803159c92246d075e773b9d25f7dd197e4b3edb2d4d0998133cb61a55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 66.9 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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 b5537c6a4d13e2339da2aa4d3214187a4eb178dd8c3d770bea85373f64cc73a2
MD5 bdf282253674f1560251f6bf540f4983
BLAKE2b-256 6f56a73523861b668caebf9cf6573e8077eb062186045b79673d5547fa98b49c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0d41a10f0efa9ada51eaf7e83d130058d72dd239a6a7a81847b13c3981004b28
MD5 cc25ea4475a2a47f30d543c9d3e0ed2e
BLAKE2b-256 b4c1887a16bb844796c6d8c9c378438fe2cf0e2af28f99d93ee523ae92bd9894

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 32801df879677404c761012612912eb08bce7264718f4cd6ff4809539ce36a31
MD5 1c8477c199b0fdee4a187b6ab93487d3
BLAKE2b-256 5ea6f276f66f7a6496ad4eb0f5e7c161cad5e402d8c93484b41f63f9644e6699

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.12.5-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 95.6 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.51.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.12.5-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d33e60b931372c01e0c6bf75aedac73275a59bc5ea7864d985ed90df3f641bb1
MD5 6b47483def241e9a960691d2feda0303
BLAKE2b-256 69e7e2e1982a008122662000d3c3404e51cc6fc34ee5148bbbdbad734a434cab

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