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

Uploaded Source

Built Distributions

rapidfuzz-0.13.0-pp37-pypy37_pp73-win32.whl (115.9 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.13.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (235.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.13.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (192.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.13.0-pp36-pypy36_pp73-win32.whl (115.9 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.13.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (235.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.13.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (192.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.13.0-pp27-pypy_73-win32.whl (77.8 kB view details)

Uploaded PyPy Windows x86

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.13.0-pp27-pypy_73-macosx_10_9_x86_64.whl (129.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.13.0-cp39-cp39-win_amd64.whl (196.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.13.0-cp39-cp39-macosx_10_9_x86_64.whl (203.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-0.13.0-cp38-cp38-win_amd64.whl (196.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl (203.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.13.0-cp37-cp37m-win_amd64.whl (196.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.13.0-cp37-cp37m-win32.whl (115.7 kB view details)

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl (203.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.13.0-cp36-cp36m-win_amd64.whl (196.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.13.0-cp36-cp36m-win32.whl (115.7 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.0-cp36-cp36m-macosx_10_9_x86_64.whl (203.4 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.13.0-cp35-cp35m-win_amd64.whl (196.5 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.13.0-cp35-cp35m-win32.whl (115.7 kB view details)

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.0-cp35-cp35m-macosx_10_9_x86_64.whl (197.2 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-0.13.0-cp27-cp27m-win_amd64.whl (113.4 kB view details)

Uploaded CPython 2.7m Windows x86-64

rapidfuzz-0.13.0-cp27-cp27m-win32.whl (77.5 kB view details)

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.0-cp27-cp27m-macosx_10_9_x86_64.whl (133.7 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0.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.0.tar.gz
Algorithm Hash digest
SHA256 e549312f4f7038edf42c63c0ba0315f64ed125b6e39dcee0279f2717c0605c88
MD5 2a59d14fd22dd6c7b5fea38aa3f6ee5e
BLAKE2b-256 e6de01c689139f7a218a5c91dae2fbdd4336d70cc935e36269406d7b03cf6989

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 115.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.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 29af0191ea9391453b580e721e363b54a5c2e55eb7efb3272ecf8c4e108468e8
MD5 8645195a8ef8ce3a2f62315ae9671998
BLAKE2b-256 ea969f425b09d6045bf3d2e00d156163371551a0da5cf48e37d6b72b3548e2e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 235.8 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.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 62120c7da9b37a14d046e43dcfe94ae3d8a957a404ef8809988009974294830b
MD5 fb938f3265c1049868f6f61d98e299de
BLAKE2b-256 8d56e28a21141224746f2d94ddec5b3ca0e54d71b2f065c29a345417eb419748

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 192.2 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.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 519a57c4b253d9115b0aac3ddee4d6e03527be7ca9c9672c0ed2961e1769394b
MD5 0ba4fa4a8be8059dde9a9c90f6150fe6
BLAKE2b-256 f8bc4ef97c3249de739733cddb916d16692022509a966e07f7f393b5a87fe7d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 115.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.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 5a6fb709fbdb0176157cd7aabdb883af155128fd7b80846d2d06590bc862b7b9
MD5 919c3e4c9548de948a7985f538bc8132
BLAKE2b-256 6fe05a68ca3b4e276653dd7ccefe8a402ecde884c0647ea8ff3254f138c3a50a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 235.8 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.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c892c824cd613d4cb59e28fb725c960513d32bbc71b2a9e4cd8053862f559fff
MD5 76ca1a7c37d0f7dd600db834b5a307d9
BLAKE2b-256 7de2b202fb823f34473ac43a8ef4c33e786bdbe4f28ffa7940e796d555282169

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 192.2 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.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e3a945fd50edc8e56d1deb9fae2ae8b86aafd6cdb3a77ea00ef7e9c0b2e809c
MD5 dff5d4c12c94a5040e92ac51229c5035
BLAKE2b-256 18b9fe0afc03f223f76e22b420fa007cc612887654ee2c2357b97650e481e547

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 77.8 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.0-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 b4325d2197d48398f8eae9fc34d7deb6647d53a72a51e49635b82f756cf4931d
MD5 6c8b1b9689f1d975210b88d7d34d957b
BLAKE2b-256 37063d532a9fee7da3233e7da6fc870be2f09891b1fefaca8bc1ead68a0205fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e829a45851da359ec5264b5fd734e9cb5bef4f24ab1ea140922a8dafb829fd88
MD5 c7346a2b0cdb47685fd14fce5aa11e94
BLAKE2b-256 981871cc14eacb8bd464ce3b5b36eeb6c35127a410f461cc1cbe138f40c3679f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 129.9 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.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d79405882af58953d6e3115afb2de7610c094077bf91613401523a0ba55d1298
MD5 27929d4fa783c151a73706444f91ae6b
BLAKE2b-256 6d71273529f0bda9ccf1be0bd24d4cd8a87b38ae3a5bf2fe40cc4a11644dd1bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 196.3 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cd88e0beef80c26490c1ba9481cd22768e69480c0c5366388bd542c5456ebefd
MD5 69e8d0d29a674a882072b4d80f447acb
BLAKE2b-256 14ab8c4c3d9c86157a6313ba95f9cedcff1b1f023bf49e11e44f5587a888b4d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 96f4868b2054d32e9ccec8e5178df46819b4d5e87a72e714ab555cf52ffd74de
MD5 d0283fd2b66dd8d5cec617dcad80d013
BLAKE2b-256 6220727192d8b7923d1ce5621b5618a9a7f89edcf5f641a407b1bbad0facd2a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 22c59b9830c22df7cf31135aa746d7f74b10f7a40238392dd277ac8298255d7a
MD5 edbc23d562106efe55a2fe9dd8e2ca29
BLAKE2b-256 2fe9dffa866d7e9c5e744a289dfa837a3993a67ef06a956ef0ff4595f682d988

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 713697c0f7865402120aab68304731b3c5cdc1c6bc982c1ea3345bfc75191858
MD5 e86411c2b87b4a4317095d04504d35ba
BLAKE2b-256 535d2b5e08b0e23ab0681d0216109d798fe385a7bcfbcf9f20669f31bd11beba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 203.6 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.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f7e2eaaa70c6d07547fa10bea3e3c218ce7beb3f1c217903d21ebd5bf6a6682
MD5 3d9e86649f2dc059fd0556261c3d79e3
BLAKE2b-256 111b2ac48441bbc3bf6dd773a46ffcef7f9c4b9ebae651fe031d23bdea213ed1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 196.1 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 de3aba8b87fb70e0aa7d9cd709da25371cd0af68d9c9ad6350ed36f8fc3d971b
MD5 b2b99ffc4da3cb50f98ee91b04dbcf06
BLAKE2b-256 5b7b63fcb77ceb1d6401e5e4eefe0f368ca044714fce593e32fd48980072c575

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d64b025dca0abba91b35f65511efb6730e5f89c0ad3cea80ae43a7239ba53853
MD5 3c0aaf07087ff7e32a5bd5a4f2f9894b
BLAKE2b-256 cbf4615cdece2470ca8d2f2b9e16d21d30ea43227506a8ca13cac129b7fc6c15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 140295b10bad9893eac57636d1cde9ed97bd10de19865ddc02d87e0c0f2f59f0
MD5 d4abfac0792890bee971a980de390054
BLAKE2b-256 5f69278c79672e305518eebcdaaac1e8d50fd80b1004c1b146120021a347576e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b46c018101cb71de687f703087397bf48d139b87761bf84ff588cb6b91e80452
MD5 89815ca06b18b98c5793efab6cbc99d8
BLAKE2b-256 e8c96c172f866e4421f383645464af1ee495ebb4d32e821ec4a1e72174fc1d2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 203.4 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.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4dd40b8a2ac4241b742f30a19f93c350f840b9e2bca205b65470f9ccbc5c6d94
MD5 a18035d60bc6f680a545f5b366db9d8c
BLAKE2b-256 00dd643125d4ba5cf48ec33716f5311557977445d8ee93c4e3d8d919c3ed6acb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 196.5 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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 034ee868642ba3889e1e18160636492eef91de4036a5e43420d4da8cd1d3e194
MD5 fa8125ee3bd41655e5105b1550e5bb43
BLAKE2b-256 fea9581e9bfe466299a0788fc09617a8255f3ac28f34a9955e5ad9a37c728c82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 115.7 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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 80eb7186d9e9c68cae4e73fd2136e873c82ce17bc6c01c5a05f3fb86889f9f8d
MD5 7c8bacde914a21a1126b9717a6af9da5
BLAKE2b-256 d92c8286a63d53e9504f1b5166e1f47ba4189b6a6bc2dd75aaf5de704e6eca7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 34ab9dbbd3b3af62d566124a4a3fc92eca17d9d4c812439204cd076679c08f71
MD5 87eb77be6167ac389bf3e227308f48fa
BLAKE2b-256 0f11a075dce065b83d9d1e1d197617d7d297e786e88e749fadbf869d8c44485d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c1a2086b066a9ae453fd89dfd6c1b6f44898a319047c11fa35a6e937ba570d04
MD5 3550f6d79514e07e9a253b91926e0618
BLAKE2b-256 f1910f272b53f90b80920b43f866a474c0af27603e01d9d3646e2b96ff797328

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 203.4 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.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 699b383d715b48b19a81e12686a650540dd0323096b5d4b72d301a841f34b1a0
MD5 d92dbbf69e668cf692f9f8bfbda90628
BLAKE2b-256 6f951d062d70aa7dafe24fb63e03c4f366ab0bc367b45cf79c6ebd8e8fff6a93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 196.5 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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b7ebaecb8db713c5a36940b3b2b4d828b66317040add67b4b445ccda781c3103
MD5 7ae8e0cc4b9d299a0687afa0a0030a2f
BLAKE2b-256 038fd4316d88833d10ed71c523e6a679de120a7e386c20113a38e3faa8faa52c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 115.7 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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 533f4bc51e785aab573d279e44d35bf728c07e66211b0c0b07494b29beb0bb55
MD5 ed1f680418f53c41a669666492976d1b
BLAKE2b-256 8ba329a06e4e81b797421d4f5a7c6c7b9621fa3ab87c3c62c870b99551bd82e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a30fdb35d60cb119b436bc446c2e170f1373beb03ffe1896281324166b85d2f1
MD5 c747f684fb1178e65047a5f9d6f6bf20
BLAKE2b-256 4687e2e5b2f231cd0e1e42d16667578bc61997203dbd36cb8d0303289e0785ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f43d6090583c364e503cbfb5944a749afbc9cdaaed12bc26cfddb7693b5ac4fa
MD5 860236d210e2e4e29840bd8ac70cd6f8
BLAKE2b-256 100fc5e7e20e64da4653ae92f0f41549d4cb770ae9c9995998219e2a27d8120b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 203.4 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.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1d6f02740811646bff8dcc9973693d87d10d84145be2f4acb29875bc7bb9512
MD5 9d71c9ec1b4121daa032e9091cc64596
BLAKE2b-256 fc82fb4539608468d9188825935224b01db87a552d9da73fd9b9e6add4414e30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 196.5 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.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 213e3ab2390a32f2bf5f231bc67599bd7931876a499c4cc5b2a188af54fd3b75
MD5 1966bf0a9ac036fdfa543b5d7003ffbf
BLAKE2b-256 db042faa847d90d8f1ed63c490ec3b2001d670c088574d7ec226c82c28e412d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 115.7 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.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f68782ae23de10d087239ec5d8a77b58d6a48fab7b5208d17709feaf4d9c1f03
MD5 5d5370213428de94e0d59abfa635fe63
BLAKE2b-256 5a567718094e8af7322cb31cd7c0f01f6dcb355f2bc10bc21c7c6fa2d3adcf8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 359f40d7c0614958ed924f9cb5dedb8515b6bcb8723de6eec64989c2c1706ca4
MD5 2fd2d3cea801317a669f068dbe0f8683
BLAKE2b-256 7f433faf076c2a74e4ffd1d5d4048e651385026145b8ee860f18d705f1cc5067

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 799b8c1bc217169e6385b1c252a01e1ba304a955818a87c0dc8dd5120bba05a2
MD5 69f8641d2803bbce31d6255825bad726
BLAKE2b-256 b62be6fabcdab62f92b4d7dad24786fc3bf972effef656574f0186af7e28f4f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 197.2 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.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f8063df309ed2659849cc9088783d96b5fbeef9570a3b54c05a81ce8df254b7
MD5 e94d6bcaf66579f1c6395f5136af03af
BLAKE2b-256 d13cfc3b8a806056e799688587623d38705ec1f4bdc673cb589cd80379c0f4b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9d69f7144b4ac2a4a3d2cabdf574652b4c3b1e001021d7cb84c0179c67e001e0
MD5 e4a870b95d02ac2537118df34d742fa9
BLAKE2b-256 a89d53954902482eae66f4505769ad3a2902ddfb4d53b52f2a781476125518d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dea3f25e60ea6c1761f84fa956141b3f1c323ede36ca0dfabfb7ba94636ed59e
MD5 5eb5e06b3f1de3d10c90f9a0dfed2aaf
BLAKE2b-256 263619fcfb169b6f72ccf6da151d724361b97d25e9bf36fb22c2edc410fa2d6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 113.4 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.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 7ef394364f528d7ec8267605217abf0c6d2a6051e27eb8b5572ae4aac8facaee
MD5 a1f639c76a10276301d0aca9f43aa4ce
BLAKE2b-256 964576938511a21137f77d71d6eaafca30d28c8c2786208b9c9022245c69b961

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 77.5 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.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 2c1c6abb65980d889bd062f2890dd94ec4c2a2134971d4f5754fed5f84314bf1
MD5 3dec3f0460cda3ffd27521f759bf4bf1
BLAKE2b-256 8472d9a0600435bd3adb1f2e92d6a2616b1b0354364aee7d8d674fa6481cd68f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 57e3de9bc871f33ba3f770022c468858f5535133a56e1dd72de060f8be4ec65c
MD5 ed5579de35ce5aad4ed3107d3e1a3636
BLAKE2b-256 d9d580660477a359c4a0abbdadaeeba4b0776ae798f74e7e4cb0ada878c8f66c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-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.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c5f374f8621bdd0067ec69fc4e66c11fe0ef35495af7bb6d5e703e64e5bd2510
MD5 c75df65397d863af8e8932f95e848d66
BLAKE2b-256 f5d22e037a86006e76d82dc76d50a2c755d1e5fdbfa48625844f75e46e30c748

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 133.7 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.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b85a067fabe0b5612cdae1d54c9ea2f69432dca2a71bd325865d55fe71c2310
MD5 6c96ed68b39e2279a8f2e842de787563
BLAKE2b-256 71f25c1c61a37bb8ee87ff3659687ac454cde91db4e5c603fb23a0d52685b30b

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