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, 1), ('New York Giants', 78.57142639160156, 2)]
> process.extractOne("cowboys", choices)
("Dallas Cowboys", 90, 3)

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

Uploaded Source

Built Distributions

rapidfuzz-0.13.2-pp37-pypy37_pp73-win32.whl (116.0 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.13.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl (235.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.13.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (192.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.13.2-pp36-pypy36_pp73-win32.whl (116.0 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.13.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl (235.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.13.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (192.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.13.2-pp27-pypy_73-win32.whl (77.9 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.13.2-pp27-pypy_73-manylinux2010_x86_64.whl (160.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.13.2-pp27-pypy_73-macosx_10_9_x86_64.whl (130.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.13.2-cp39-cp39-win_amd64.whl (196.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-0.13.2-cp39-cp39-win32.whl (115.7 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-0.13.2-cp39-cp39-manylinux2010_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.13.2-cp39-cp39-manylinux2010_i686.whl (4.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.13.2-cp39-cp39-macosx_10_9_x86_64.whl (203.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-0.13.2-cp38-cp38-win_amd64.whl (196.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.13.2-cp38-cp38-win32.whl (115.7 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.13.2-cp38-cp38-manylinux2010_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.13.2-cp38-cp38-manylinux2010_i686.whl (4.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.13.2-cp38-cp38-macosx_10_9_x86_64.whl (203.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.13.2-cp37-cp37m-win_amd64.whl (196.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.13.2-cp37-cp37m-win32.whl (115.8 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.13.2-cp37-cp37m-manylinux2010_x86_64.whl (4.6 MB view details)

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

rapidfuzz-0.13.2-cp37-cp37m-manylinux2010_i686.whl (4.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.2-cp37-cp37m-macosx_10_9_x86_64.whl (203.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.13.2-cp36-cp36m-win_amd64.whl (196.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.13.2-cp36-cp36m-win32.whl (115.8 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.13.2-cp36-cp36m-manylinux2010_x86_64.whl (4.6 MB view details)

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

rapidfuzz-0.13.2-cp36-cp36m-manylinux2010_i686.whl (4.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.2-cp36-cp36m-macosx_10_9_x86_64.whl (203.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.13.2-cp35-cp35m-win_amd64.whl (196.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.13.2-cp35-cp35m-win32.whl (115.8 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.13.2-cp35-cp35m-manylinux2010_x86_64.whl (4.6 MB view details)

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

rapidfuzz-0.13.2-cp35-cp35m-manylinux2010_i686.whl (4.6 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.2-cp35-cp35m-macosx_10_9_x86_64.whl (197.3 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

rapidfuzz-0.13.2-cp27-cp27mu-manylinux2010_x86_64.whl (2.6 MB view details)

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

rapidfuzz-0.13.2-cp27-cp27mu-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-0.13.2-cp27-cp27m-win_amd64.whl (113.5 kB view details)

Uploaded CPython 2.7m Windows x86-64

rapidfuzz-0.13.2-cp27-cp27m-win32.whl (77.7 kB view details)

Uploaded CPython 2.7m Windows x86

rapidfuzz-0.13.2-cp27-cp27m-manylinux2010_x86_64.whl (2.6 MB view details)

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

rapidfuzz-0.13.2-cp27-cp27m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.2-cp27-cp27m-macosx_10_9_x86_64.whl (133.8 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2.tar.gz
  • Upload date:
  • Size: 57.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2.tar.gz
Algorithm Hash digest
SHA256 7ce5a2dfa8fd7ff75e238be6a783010cdb6ccbf89601cac46c8967461a89584b
MD5 b0b966e04f962baf97e9fad405355017
BLAKE2b-256 f596decc7cb4d31b122abd9cce7b9cb5eec119480081c46fc8be053e2227c627

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 116.0 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 da08edd3b1f99ca436847ca4598e4b6e3b70f480ee066108a077d4c7912cf096
MD5 1793e6dd9cec54ccc1b9bf6789e36eba
BLAKE2b-256 a4658a16cba0c0b57465d022acf05ef2ad82d6c17396a060afe7c1d10dff263d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0ba497e73f78973cca202de9743482870a59d0594adaa34328bd79aceb19cd36
MD5 b95d94587fb923789804200476080a45
BLAKE2b-256 a291f54deec763c43cf6642b977fd06f7fac20a581ed2841068757f5aab857d3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a2f5396c166082c9eb0910f9a325520ab78fe44540e323c4c71755f63bda762
MD5 d4b37d1c97feaf2e2c26801594e40a21
BLAKE2b-256 c74b31dd6f2183b4f2136115a7165f44dd638ca6eb30e2be5c9a89bab735993b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 116.0 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 df4aa32716867da2cfd5f5c512a5806571b3e20c534eeb63097a499f44aedbf0
MD5 b51084072f77df9d70869a21d02380ee
BLAKE2b-256 eb12f47aa1246c49f0a112ef86c6af1852f99f5a2a1893f5a386227564fef2eb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 db638127661ecc401f31b5a957db7331803b7c646e95aa25d64602216a730010
MD5 6b16c20292d0a10eca9b1ff2812a105d
BLAKE2b-256 287d2dfb23053b63851065e915374c15de3337a1cbf11cfac9a3d2b0d96b1c75

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3af69e8c73f74a35b797fe87a1a7aa5da04350434341c9da52ad2c4be7f050ab
MD5 a86a7aec83889c509158ba3500ca86ad
BLAKE2b-256 2b57dedf0b16a6266fdcb19cc3d0f7b298e7ad38642e809acda1d22278770990

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 b6219f327210a253414e78bb85c5422ee4fc5827b0b06970b7d87687011f00dc
MD5 0e9a6214ff6b38456f74e08db402fcb4
BLAKE2b-256 0f3698c5dc4af8150065d0bece5abd11a3f73b98c418d0cb679758c155b33ce5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 987e15d91f3e2da5a0eabf5ce0c3c52ef0bf396c71f0e849c7fb05b9eefea1f5
MD5 0d1d6d3634d4a74c5fa18b518f917dea
BLAKE2b-256 4c570c21866070c2929ae7cbcd3468921e114bc60157818ac265d8872dc28135

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f137240e2dc2ada8aa31e2f88783e6172040102054f9aacc4742f3a6e0ceb20
MD5 b26f44398d6f84e927e1e44e0e6fa850
BLAKE2b-256 a6d5667e79e613409d0c21f12649e7764e6864f8fc01a9d6156d81ce8e98d3a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 196.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5d7d9397fefd0c3a3ac74b24ca6bb4921ca60b77b115ba8a18d60587e1c07f8f
MD5 c5afafcb80397faadf6cec78c9b5faca
BLAKE2b-256 c6a5f8da231eab55acc188005422be1a30b23f307c610172e26971e737afe96d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 115.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 98c3165119aff695ed1ad9f34b36e53228bb0272b63f79bdd082a4a206de0fcf
MD5 3ff8df069ea0d66521d38200a7c14f21
BLAKE2b-256 1e1c4f74c82999f4cf496aded8cc1bb04987c6986e8275e9b32fd9982fe468c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.6 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.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bc70133eed8832cd13fabc3e92c6615e887b2d938df3e03e4548e3d041965a7d
MD5 1dc7f30ebc098a26583fc8ca5b9328a6
BLAKE2b-256 2e9b718775eef696df8456a8d67be17946ae131f631cd1d30704da9f5e1676b1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6d5432d6399191641fc26d8a31aad376afa7e0067920fc124f1a77f33a09a0e6
MD5 d9161ffd8f2316c44bf41c497ceb2403
BLAKE2b-256 be32f8d708fe693db2a195479767959544b7062b55f3df4a540247eeffcd8d90

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c642b382c40f4888f93e1951f6f70f9947916506514e784485a828a6b2244710
MD5 d4e8c1d4db2586152f809e8d02e4f980
BLAKE2b-256 4cd21b67e18a1e4684aa3b9baf585cc65765aeafd04112c18f462159a134c6cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 196.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3e2c25139a614cb819145d110c51fe91994232f9f5bacdd8f67c8cba3e394974
MD5 6a9e353da4273a4b8d06c548452ac937
BLAKE2b-256 6b8dac1e9473ddc42ba7b6d663756b3a58581e57c858ca1e2b7d8fc103583e86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 115.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 17125a31a47821b33b46b16e5f0f94b0ff65774296d0feafffac2d0767f96693
MD5 326d7e677538d5c7e99b902711aa5d4c
BLAKE2b-256 3e12f57232ae18ac2d51f56716bd30ff5c1612c3b062695b5bc2df62c13579cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.6 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.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1c5061a3e22be905e084f234c0456767f2e93ca77ba00d7c8b4003455a299abd
MD5 35423c5b00663c4dc2d381cde505bf5a
BLAKE2b-256 afa2c597eb0a0dcdf81290808bc50c7f6c89c5f831c81aa7787ff97d18ed0922

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cc196ff87acce7e28dc03efc2c95c97247e28f77f6f8232042cece8f12028744
MD5 71adcc3d94985fddc975409391277fb0
BLAKE2b-256 323019395c880a6114b7bf0e8fd94696c7716dc09ef81d876687bb0882bfce39

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c39322b7e3581fec393d312ab0ce9c54e283d40ef12e74df48bc9f0a19fffd7e
MD5 ab67f23719d23ee431965e807bf99a91
BLAKE2b-256 04c54d769613bd67b30cc8f1203df6c188fb9a87b58ad19856659908e502de86

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3ebb6530f8764ea8d7ab4c6448e397b2b7ca3e07a9ac6c14837af343995adfdf
MD5 6246199047cbf87ebf5bf1d56ccb29ac
BLAKE2b-256 8a1e5670e848a00c2d62832ebeeff2fa7bb1fbc68efd591d1aa8f00722f67d0d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 87a73d08ca8a3e03c55da78c0a7da63e61c38a199958f3b59b4898bb41567842
MD5 bc2b13799bb683e4c0c94111a702ddc5
BLAKE2b-256 50c395a4c1301d8c11e43993a4d4a08551d4129806d5971be618471dae210c69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.6 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.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 193830fc9ffad4d2366eddff779220088922eeed50e23dd66bc014405b4d171a
MD5 4773d4edc26e3ede0671c18585cf174b
BLAKE2b-256 ebaaba3890bcd3a6e1ec7a625780283ca762144490f06b24f493df7528e41cc2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1816e26eb85424975a3f0290278c775d87febd1c00a42efe6ead109a2400ee3e
MD5 b1fe9ee4b5bb29e7a16cff7848235ace
BLAKE2b-256 83613386fd2ee56bcf7b1cdde97c0f7f1146ed349b4d11e6d03ae2cf901b0992

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8666deb8ab2e5dddb8ba06f9859660c7d5cf68e262459789cc2995815b67a25
MD5 8fe73d7c7a0abbabbfcdc4e942790c3b
BLAKE2b-256 f1d2904359b478af5137a4249e6a86423fb02bbdd8bc54c239935d78debd610d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d53bbfec08831fa81fe6295420425d4f56d1627751639f11bcc8a7cc4e0da742
MD5 7705e6115665f0117cbce2ff0182cc3b
BLAKE2b-256 9ce9379a7a6286a52baa1fc2ab8a6e986fcdd4c2a1e633618a3d3ee011f160b8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c4d571315a011582ffe8b13a6594fe6ab0f5f099cae4d275d35ac9f595374d40
MD5 c5c934934670376c6408ca747e377082
BLAKE2b-256 412de51f86dbca566c16f0c1fb244ed9650a49af55a37e2c17d08300efe1c358

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.6 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.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3cac19edc6c0f4e93e48aae1de734d284da813eab6a32e40d1847895109b5935
MD5 2fbacd11be7b5675314862e4588dfae0
BLAKE2b-256 b15f10ca4cc3b230dee1340913cf26a9ee670a05357cd31a27c871983768ca8e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 44e63b01c10c3265a8424587bbdb543814d2ef80bcecb53dfff2a74f204dd511
MD5 fa3b5d1d4d24863434b0e2395870499d
BLAKE2b-256 a4fb10152d82896a9a382d37f4ce9493a58a11c6209a435dffce345f496583d9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3425eadef869e44975437530b2944c7bcf79e1e6f55b5e48131a17f857053f47
MD5 4decb1986c2f0215c9bb32e6a4f6fe62
BLAKE2b-256 a517205efe739692f5d5205b1395fe887e7e8b71d4160839438af209a0b7e63f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 686fb1b3f415a7ee201a3099ed7ebc02c1fbc5d188be468152e9e2c17ed190c1
MD5 fcf6dd3e062dd2255be095e2181ebef3
BLAKE2b-256 794a2e68d6f9407dd1c1d647c424786cae25b67ea858e15dc60bfd98012e3033

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 7206cb7811a980e2aac93c9ca72616b16bb9038694ca440277346c4b18fc73ae
MD5 2918f822fcc1301d9e896e9ed61f7c60
BLAKE2b-256 ab65bf8d7b3a9ef1f1f69625aa19a7fce287506c346e72a683425964fbab24cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.6 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.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 46f181ea5cb9ee4bf5efea775028d77b8d9da49cfdb5411d2ccb272fe3a3cc47
MD5 d9ff366dbaf8cf9785ad2dca8b18a056
BLAKE2b-256 7b3a7f4ec6f0e0450199bee228ab0c8fbb6a7f8091287cf439e598edf8387f0a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 046d4f3ce1e038e21e0ff0d43b228b2a4c5fe2a3e3de3cdfde24e7c42b0fa456
MD5 305eb82a7c2c594a4dc6b73058bc3e79
BLAKE2b-256 65baa5c95009a3b25e40152932619e6850105c1ccb4cf3390fca27f6b6d8ba0a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55bdfac2d4dc9b3817cb0ee79613eb005cf77e5e2f7209aebe15be91f1b09336
MD5 fa363467149d3f0d4b5586d9c86a2dc1
BLAKE2b-256 d69c4d94cbb81888b9cf1c951996d584008a83b5463dc1cac6d294e9c263def0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.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.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6b8bd73502496b5c607d704957666669b46878958bdf104334e13b9820fdb235
MD5 22442f1a0832c7bdc96684d565d99036
BLAKE2b-256 6e8adc9c07e139f9b4ffee26434090375e60658de04070ab858bb0d87897caf4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d67fe52a17bf713db2889e64b451e572d9ab26a04d254a5cc625cd9614eaca03
MD5 fb6ffbfbb2cca02e9276b0176953af32
BLAKE2b-256 fd3f63160cf654f16c398c1efebf85349384f71d0eba7f181eac8651c8beeb9e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 0745c419c60850b64aa98d63626d0fbb00578e7ecc17399480f56da4157992f9
MD5 82ea44889d8240f3cd818aab90772510
BLAKE2b-256 01a28f7a0de2c2a682ff44921cae65607175576a87809dca557719f7df094a48

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 13470d4532b619d5191bda47dedaeca2e0e8ad10c19d0ead4a4fc70bc10a9736
MD5 df2048520aa31d0e1d1397b3e59a29fc
BLAKE2b-256 4e7b91402942516bfcdb6b031184f733795fa052f6d784677513811e18d8c68c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.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.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7a43f540a3bd9cde93dbf9663f9cc4505541e326310545d4a4c0ed6f208e8bc5
MD5 0400a51fd1a316d1ec809ca4660a5bd8
BLAKE2b-256 f38f070f5de6376f252ac0232c8ada5596a10f26b4e5c3539024402659b04c44

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9b526ea50f9f7eef49295c56bae139940392aaa3718d1991a588587cb027763d
MD5 6559deb98df26bf9dec0ad63f3c0f689
BLAKE2b-256 e0ff9a1b07b4f2b2049742d6b897461ed8096c9c4efbffef8d412f1f32b6a176

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3266606559bb361d54c05600a26bf649d38f79e3b7bea116de4100f73f9da0d9
MD5 4c0c62ee10896a0131c82d243a4dbef8
BLAKE2b-256 fd82636140bcd89aca7d09eca771fe0c81d52f7f61a92f90e76379bd6efb12d2

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