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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86

rapidfuzz-0.13.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl (236.5 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86

rapidfuzz-0.13.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (236.5 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86

rapidfuzz-0.13.1-pp27-pypy_73-manylinux2010_x86_64.whl (159.9 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.13.1-cp39-cp39-macosx_10_9_x86_64.whl (203.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.13.1-cp38-cp38-macosx_10_9_x86_64.whl (203.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.1-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.1-cp36-cp36m-win_amd64.whl (196.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.1-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.1-cp35-cp35m-win_amd64.whl (196.5 kB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.1-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.1-cp27-cp27mu-manylinux2010_x86_64.whl (2.6 MB view details)

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m Windows x86-64

rapidfuzz-0.13.1-cp27-cp27m-win32.whl (77.6 kB view details)

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.1-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.1.tar.gz.

File metadata

  • Download URL: rapidfuzz-0.13.1.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.1.tar.gz
Algorithm Hash digest
SHA256 5bed49638851279bf8655c1997745a0b025e48187529ca2c16086001c27f0cb1
MD5 467c6d3847755ff6bfc6f271bfce508f
BLAKE2b-256 264970355eeee8420ec4856a6e27146df8193ba14180cc416d33abdeb9e35b69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 051ddb694c9cd455bdb7d8f484c34b4bf7a3bfacfe937d0d559e7688342eb892
MD5 fc37b263f17c10ec6260821525dec679
BLAKE2b-256 477507dbe6f6b554dd6ff3d3e517a08c098dbfeb23448636ef2d8e45c9c66e0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 236.5 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.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 940c77781f67bd367efd40db4fad5f83905a3e56528f4077d583b7da044a046e
MD5 1bebb44230ae8b031f387d1484a30b91
BLAKE2b-256 0c387bee8261f3773ec4ba03bc9dcb16eda18b146057841f839c25fc2d4d2502

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72846c979f43b1de15c8696e25d80d1d1db17c6952374d47d6724297bd00433c
MD5 bb20dcd19d6f92fe6ec2b2556c1c0e00
BLAKE2b-256 a27f6b7da588d7f17eb6e233577f1268bf51ae604727e475c061b9fa787e7e26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 7212b9b323a649052c2a8673f54ba923b2e68f6aee42d9a3c479a6e3e53cc6c0
MD5 16c5d5819f64ea569b126505228b5638
BLAKE2b-256 0a631717175527db65508f9d8631beac1e6b2ab3abc0c2e4276b9b4add7e0dc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 236.5 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.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 72cb010472169fe7b7e90761e82d05b2f8f6159c89e60e014ea0ac4cc9c3b51e
MD5 c119321920becbba9ea38e76203e47ad
BLAKE2b-256 4720ee954a00aff52a563109de3e46e580866682d5a9f7ddf28d3ab5175136bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc00f941188c97ce8f76013dc6360bb0836149688a35a052a68851e9434bdbd7
MD5 a29db5a95b9a5679c15d6d59f84c7d9e
BLAKE2b-256 526af3eba7adf279333f72152506cb47ad17e04554d6d65749e82b4cb8002bf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 03d0702c4a07d6ed7d9f51da7bf72541853b1ed869a0d2964e0b49412c8e0776
MD5 34d3c310709d87099507b4d2d18a5610
BLAKE2b-256 c88fa8418f56ca26b30abb03a1ad2747fe307ab7c8300092f10ee1556babf1f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 159.9 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.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b9fd9476e79315910705a2f4c19a7a04dc5598380ee7acdda27ec97e6c7189d4
MD5 a25de1153a020fab2a58a4086558c062
BLAKE2b-256 7972b93832c1e322ac047fd89384abba0c5bee1e3337f998b2c7a38ac2eef5ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf0e9a1a76e7b27b2520e5039c9064ee72d254c7aed66824ce4b6155c01ae6fd
MD5 1bbe1ca9738c3f1a2cebb9f4b5614990
BLAKE2b-256 de5ce8134e1d544259625b067a5fb0c6d89abb6f839d4f5e78c0f07e29e1c8eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 331a8aa7e8b8799d9830e47ddd6b4b4414eb866bd359b31c6b57f3dad9978ed7
MD5 06f3bc9fad63087d55e310a3ac82fd2b
BLAKE2b-256 79db165756c239491043639ffb924cd05b52c2c115e766574212f0dd9d996f88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 79c350006c8642c73fdf3eb143d05ab7e40a975f42b2eb776e9bcdad12541c2e
MD5 a28c8560eb9b6cb055db4d85a83dc093
BLAKE2b-256 108682d3b7dea63ef8fa9c653a98c370b7dbbd7c9a97061c1e6904d3d433676f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 25be5b59d5fb4257b141ed709e8c50c1705bf2cefa51fd1fec9cae06f7c159a6
MD5 7ca64c29ef2b590eb8b8674bb6bb4fce
BLAKE2b-256 5984faf71428722d91258d8301d82c40fe015807964d18f6110f6b12e23aa472

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c4844ec6fad46a75d2c73469beb79256a19ef0b721dbd859b6f8fda83380ee80
MD5 f9c04f7cd33914fcd514908e4db49854
BLAKE2b-256 14cffc26b3ed102fa9011305f50c4c4780e84ea8031d05f0c36fdb27b99657d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 203.7 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.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee1b7cb73a9722b70506dfc1e96c4e45394ce527f56c354b749519ea2bf70c00
MD5 7df56aab27a92484a213bac809f1c93f
BLAKE2b-256 525f196603fe630e646de6315751b25a84fd2232970c3c7717bba70f72e09912

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bb84927b9ca404fd33e09094901a873723b5da1ff1b72ec659a1d4a00724f4c7
MD5 7b635f23089ac74fd7a2f329fd3e09e2
BLAKE2b-256 3687dd69c3856755b54c9705485329e114332cd6df3bc4f512bf2c1403773980

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d90acb236b96b1252ca8fd231bc595a5344fb65c6106d670b77b3d535ab11751
MD5 782e7961960a310cbca9c6ac889665c7
BLAKE2b-256 ade1e6102d2c334731da312045577f3534d0a3b7218ba42c6dcbbf833b3f362a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 01cb7424cdd02a713672a09c21150fb8a0dab185f1936fe5811f3988ed4736b4
MD5 387f2703e1459ed34bba0a566039663d
BLAKE2b-256 36ea9544c9db24953a47173b39e38bc697e1a159e3644d50fc18cf073125f0af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e7e93d547dea87f5c65f80611c6b3dec65e75bdd21c4b872a2b5821c7b0da375
MD5 66914a75fe27b4daee5881e08b273868
BLAKE2b-256 ff8b81007fed94f01092209f531f5147a0cab5f903f3b01f9ee8f534edda50ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 203.5 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.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8733f369502945649f9f66fee89f2248aacc95b880fdef0f09361bfe1b09e5d9
MD5 f148408e09738ba841a7043ad0742513
BLAKE2b-256 aa728c6958ddfe9b16b11b6b5ff73d5c41e61b47dfc4def1e54b18d19ee25e20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1fc0a19390012a3bbafa9beccd37bc15a7367ee41ec3191eb1739922f5f9d8f1
MD5 c8ece7b48fd31c45b0daf1ddc03cd938
BLAKE2b-256 e9f8ab561cb87b1b6b423c1f7e0798a35adb9b32ab1776ffb7aeccd6defefc05

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5e6a0b049ef522480583abedb22d232ade8c4a28d8245f1d7fa270ae679302f9
MD5 e9414bcc1009c21c5c959ae4f62b3e7f
BLAKE2b-256 77c4798494be682251b56bbb5e6a443fb568ea3fdf87e9428ce0b15f3d55907e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cdd2d47e7d3b9ed42a980a426b228979482cc26355c16203b3c3c285806d0631
MD5 a4e87e7ece6d7c77778d48778b495ea1
BLAKE2b-256 230815780367aaff6f1b91e4fd7dc4f13c245ce928353b3fbe325ab836c7fb69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0b4139674479348dae8b7788524732aa70de577aa4c62d59cad6a4603feac5d6
MD5 722089eba29dff00466e0e2e192f28d3
BLAKE2b-256 f1240261affeba2ee64e4346e73d618ddd2905fa84bed39270f38ef0d20e075b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f81b24e5e6788f5afa7233e513369c0effdb693953898dcd745e9495c43c1338
MD5 2e679be6d088403abdc2eebde0104eb7
BLAKE2b-256 f581fd97f43a287901ea3d863bab1a7c412f2c938568ff8e587647adf7bd592b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b438129e08ab94eca918c274c345c59b373c7e5c5d521b4f8789b2568af8e186
MD5 6faf96f0483212db20a27ed9bd0af188
BLAKE2b-256 d0e659165e88351cf4b7083db2d78d2b27806147f63277a59f69037fe3ca27c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 fcc475383f425d76e6694ff5169118f34d321ca94001a14dfec0128307cd4685
MD5 05c53d9cfc98c5e7c1451ca1c954ec5b
BLAKE2b-256 c55dbbdcee331988e9e3d32116947072fdfe7b3826eb11f8896fce33fb65d584

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 132c66f58a66aae6ba447eeb5e2b3cbef42b3c414c7328f282f393420f4dc506
MD5 2764f1d18e3b98df819b93d8b08b8fd4
BLAKE2b-256 61cf4c28b4b37b3062f2b8bb3a5d3ab4b825c80d0ef8837804c62f87e7ab13a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fa454105d1300eb6071dd31af5f69b618aae5e1230c7d55bc9e6ad4d3d513419
MD5 7284d592c90a9017dd3c59d8f1111129
BLAKE2b-256 4ef4fbb8f8c4f5c7c0db515bb8f439c162c2d962938d455fd428864d5edbb541

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3286ce8d7c4e57b46dd9c6d87dbd59bfecdbce8f08bccb826ee829ffefab993d
MD5 f23733420cde7b2f5d94c0bceaf40941
BLAKE2b-256 8eedbc92fdafff65003a2f7e5b871e00e24c17b36c7badd59c226e71c1392801

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c5f50a6811ca0c00a9aee8b62261fbe0a9ac41a44df809953243c898dd77209b
MD5 117d330428301a578464b223d908de52
BLAKE2b-256 2060ea485329dedf04853c7f0051291ccc537def086e1d770fbd62ef11cab33f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c4d2223ea610f9a73d8fdd97f02a41e393cefc5273e4179fefc895b7f41d74d5
MD5 3cf0b71c4f242ed8064010b4605e1e1d
BLAKE2b-256 58b1cf65ad4b8419c1c5059ab3144596504669081f06ceabb1ca9ab88d43df7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 96d0de5116a1ba25b7d7a8c41d103b75b357852fea229b7a95faaeee9412636e
MD5 16dc37fd6b9d71e6c6f9b0dbf40c42cb
BLAKE2b-256 4f8779070845cb02c8cfeee8346944e3d0aaacd6aaf4ff777f859756d97208f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7bcbc70811f07c338eaed361d76a2c5ad81d7da672573db8ff4c914e1bac4e99
MD5 0f219550528ede5482af20a11bbdb3f9
BLAKE2b-256 c94a34b0f881662d7cfe16d944a7e9bd012b393a9350cbff22941ec56e9e78a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f739c1eb129f5a4f0be8a1ccf9de1494c77d7141eb2a48a242d8f5589a6b4b45
MD5 5897ff7c7d59304cf379d2d4800f1cd0
BLAKE2b-256 6cfd4b9a9b68012e9cb5ec2e2df2f5a486524e76fe4a9877992ccf6a791c9511

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5c7eab8f545e2306519fdf3ae585e431cabe87695c0429c75765876f8f3cd5b6
MD5 2b778d3a167c3a499d0c8653be3e4429
BLAKE2b-256 f09d02c31b0b1587d8e53e3cf013f29dfb4738e6345549ad06f52f8dcded418f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2ce793ece667fc019817836e378acb0a59b693b54f3558dd947f15d4eff96319
MD5 f248f8c1e0b67abe6c3a7dfdf353a7f6
BLAKE2b-256 c9e4f1dab52bb07d25f15c31e839558ff9d7d1c14284ee599f4436ef57bd01da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 a7481ee0a9fbb39c1c51cb901b7e4fcb754cb2bb888ab279473f832130c2e1b6
MD5 99eb107474a585246e068ba43c840b0f
BLAKE2b-256 ca88501b3241423d86ec874e4f5af4d84f7a8fd22d2ffca69dbd9060f08684cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 77.6 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.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 053c314af1fbaeedc161e225a051dd37d6d17c27f7012eb2fec4f42d02c24d7f
MD5 8b64d6f8aa8c0c27d62731b925bb772a
BLAKE2b-256 ae46f516f5b125b85ca84c7e8836a3894e99743e43a25f0625b837d37e1b2ab2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 48d6b7102dbb2779fadb2dfbf07368ac2eb1ca2ddf393c6351b09ef14d0a9d42
MD5 973dea9ba59f4722827d48177dc2de24
BLAKE2b-256 f1bc9219e63605cef48da1d968c9c1c1bdc7ed3e83e434980881b85de5c61ddc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 955c998c6ff7eefe93829f15930e4cfcc0557c5e23f5f7580f597d4dd525563d
MD5 00a2d3a54392711dce60548f0b5e4271
BLAKE2b-256 b8141734b5b837648e63e8d0424810a2dfb2c133e327afeaeb77373547f4ea79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.1-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.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e19c21a43dbd3f28c6b0af3c56a8a8cd20ea28d18f546384b3f47cba71ccf50e
MD5 83b9bd2fb816dedda5abb2cbcd5ef185
BLAKE2b-256 170097aefb639dcd9d99a9986019f5ae34809e9c7b1bae8dac19a79d7904f5f6

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