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

Uploaded Source

Built Distributions

rapidfuzz-0.14.2-pp37-pypy37_pp73-win32.whl (115.4 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.14.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl (311.9 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (255.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.14.2-pp36-pypy36_pp73-win32.whl (115.4 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.14.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl (311.9 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (255.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.14.2-pp27-pypy_73-win32.whl (79.5 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.14.2-pp27-pypy_73-manylinux2010_x86_64.whl (213.5 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.2-pp27-pypy_73-macosx_10_9_x86_64.whl (155.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.14.2-cp39-cp39-win_amd64.whl (195.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-0.14.2-cp39-cp39-win32.whl (115.4 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-0.14.2-cp39-cp39-manylinux2010_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.2-cp39-cp39-manylinux2010_i686.whl (4.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.14.2-cp39-cp39-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9

rapidfuzz-0.14.2-cp39-cp39-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.9

rapidfuzz-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl (286.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-0.14.2-cp38-cp38-win_amd64.whl (195.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.14.2-cp38-cp38-win32.whl (115.3 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.14.2-cp38-cp38-manylinux2010_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.14.2-cp38-cp38-manylinux2010_i686.whl (4.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.14.2-cp38-cp38-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8

rapidfuzz-0.14.2-cp38-cp38-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.8

rapidfuzz-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl (286.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.14.2-cp37-cp37m-win_amd64.whl (196.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.14.2-cp37-cp37m-win32.whl (115.3 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.14.2-cp37-cp37m-manylinux2010_x86_64.whl (4.4 MB view details)

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

rapidfuzz-0.14.2-cp37-cp37m-manylinux2010_i686.whl (4.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.14.2-cp37-cp37m-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7m

rapidfuzz-0.14.2-cp37-cp37m-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m

rapidfuzz-0.14.2-cp37-cp37m-macosx_10_9_x86_64.whl (286.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.14.2-cp36-cp36m-win_amd64.whl (196.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.14.2-cp36-cp36m-win32.whl (115.3 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.14.2-cp36-cp36m-manylinux2010_x86_64.whl (4.4 MB view details)

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

rapidfuzz-0.14.2-cp36-cp36m-manylinux2010_i686.whl (4.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.14.2-cp36-cp36m-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.6m

rapidfuzz-0.14.2-cp36-cp36m-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.6m

rapidfuzz-0.14.2-cp36-cp36m-macosx_10_9_x86_64.whl (286.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.14.2-cp35-cp35m-win_amd64.whl (196.0 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.14.2-cp35-cp35m-win32.whl (115.3 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.14.2-cp35-cp35m-manylinux2010_x86_64.whl (4.4 MB view details)

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

rapidfuzz-0.14.2-cp35-cp35m-manylinux2010_i686.whl (4.4 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.14.2-cp35-cp35m-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.5m

rapidfuzz-0.14.2-cp35-cp35m-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.5m

rapidfuzz-0.14.2-cp35-cp35m-macosx_10_9_x86_64.whl (276.5 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

rapidfuzz-0.14.2-cp27-cp27mu-manylinux2010_x86_64.whl (2.5 MB view details)

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

rapidfuzz-0.14.2-cp27-cp27mu-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-0.14.2-cp27-cp27mu-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-0.14.2-cp27-cp27mu-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-0.14.2-cp27-cp27m-win_amd64.whl (115.5 kB view details)

Uploaded CPython 2.7m Windows x86-64

rapidfuzz-0.14.2-cp27-cp27m-win32.whl (79.3 kB view details)

Uploaded CPython 2.7m Windows x86

rapidfuzz-0.14.2-cp27-cp27m-manylinux2010_x86_64.whl (2.5 MB view details)

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

rapidfuzz-0.14.2-cp27-cp27m-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.14.2-cp27-cp27m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7m

rapidfuzz-0.14.2-cp27-cp27m-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 2.7m

rapidfuzz-0.14.2-cp27-cp27m-macosx_10_9_x86_64.whl (168.5 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2.tar.gz
  • Upload date:
  • Size: 58.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2.tar.gz
Algorithm Hash digest
SHA256 e2a8404a847352c1fd80ca0443ef75e3b76801f85f5c022d8ebc47d9f2290557
MD5 d38129d56e8c16fedb211a8942ebde15
BLAKE2b-256 d408e9f6b1e221940534bef3f223d55b3f59c48c93724aaeae13431423989b23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 115.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 3ea9956a35af6d2175dfe9843745150019a3f0ca2aafc0e1901125320b64f77f
MD5 2b918242e635899ea14691d36a588131
BLAKE2b-256 80834e4481a832865754d91e062c92cee7d4cefe172fd52871b491a972627ed9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 311.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3ab39e3e76cdcc1e8ff7e1a6d9e247283e01ea570ceb0989fd2e819fb5609bb8
MD5 6cf0a98d0080674c20af6928db38d122
BLAKE2b-256 cc4499011377e53f7f36dcdfe4057ca0c884870dd2c04f472eb38e8f4f704718

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 255.5 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a3012d7bb22177ab58e4dfbed361a63bb01238a03a604263fdbfc89ef654a0c
MD5 be98256f5ad5143796caf4a1c3206fc2
BLAKE2b-256 b1f91c9ca99e3954582aefd018738d4025ba5ac8bbfa273d46e25ad1ed089697

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 115.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 e048a0ae2d522bcef5f653b55cec13f1606eceb4175beb675731d4eafd8e5cb0
MD5 5c2692345434bad33f03fa7dde24de95
BLAKE2b-256 f7ad094747d5f6f5ffdeb1e273f855b4e50fa3bf0258e791970329d1037a2147

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 311.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 67846dd9ef37d3025defc48f59afa645e84a6f5c10610fa4324330bc1e776f88
MD5 b6ed0f9d94e1b15dc3a8273956075bf8
BLAKE2b-256 9aa9abbda8b14aa7773daffcf119ae64dee3b7ecd43583992c302ff14caf8535

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 255.5 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 366259b5cc67544f641d3d9476aec67b4154da2c9870a72baa2a9d4c9dddb35e
MD5 f60a394127d3b497b66532996ad2be10
BLAKE2b-256 97dcb875d03c712eab631251561d3da67923fa0145a8018b0bb8aac80d4dbc95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 79.5 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 61a5268d514c18b035d096b67479ee7843dc299a4535edd80460d62f31ffdc3b
MD5 93cded9b3133894d3e0410d5c6f7051a
BLAKE2b-256 6be5d9e6351e4d9fd1bbb91f1b7222b0d038e8b1c303be5bd738dc30f30c17cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 213.5 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cdb431d475f62b0a8f687ad84607fb99f55f5892082cd94ef5bc34e7801c1d78
MD5 4ae6cff180b131fdf59a8eab58ac599f
BLAKE2b-256 aa843ab9c1065126ee0af8da871ef66a52d89acdaa821c755901dcb206aedfcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca72382431b2282000aaa015fb7a8064f0d6c82b1fd1109c0bb04ade46e2fdf2
MD5 92a89f57b951d971e8b0f9305678b146
BLAKE2b-256 f2ad0c6e72e976d9e033e2bf44eaf880b74a66a3b381e57df688c0960da96f1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 195.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6ae7bd3de89c514be7de0b1311ac8d142d39494379fce44150c0050f6900904e
MD5 700f5758da8ae642feb0afc0c857142c
BLAKE2b-256 75126bf54c869c7a83fb1bc2695a25e83a65d6774a91759036ef675df5d43c42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 115.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4de55a2910758969c6dbe18a7887f7fae332eb4c2accf7c71584f742aeb9b533
MD5 04c407ce1118b563c8c3abc99bf32314
BLAKE2b-256 94ac414850b8ff68906a4719a1a6f56737a51ed2d0cf62074ff458d12e21e4d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 594919edd0f9312ad4a7a1aeeae0ce26fc9c61d6607566ca8a13e8a827f6e257
MD5 8b2c8af38b9af5094d54702e707c3efe
BLAKE2b-256 f40ebff04087999458cbf3858aadf47520eadf9bc7d1cac21ac852671e678311

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2250248fd95976fa3fda5b9c4eb496ddfeb85970d0f4dbb5b5958c92b364ec15
MD5 a9669bd3ed10f469366ebd315a5da10d
BLAKE2b-256 76998e3d15e99928f59b50d098e52d3c374bc0331c730b2607a6b402ac3122c8

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2a8b46f43d47c5c47797b15f0f37f5087260215c0bd6925facd5f9f32d6c0a08
MD5 f0aedb14e0581f7c2f0dd4ddec7f2b35
BLAKE2b-256 60e9869ce9e99ddcae32529b024279e9d0f265cf9fea9370c830fe7a8ee3cd22

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fe54baf0507a707c42767cdc518dac75dd8af5f3cfdc5bf7b4758e0e6c107d05
MD5 a8406f3b2e87913bc9c7a80ce11627d5
BLAKE2b-256 579b861665ce06f9770db93211f45a44575453b3b9ecec8477670b38637da2eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 286.1 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3af12500c160b8a3813cd13f249a8d8c8d5b169469858d5e6c26860d3bdb1b8d
MD5 127ff10912dcc9a79205d80048260c34
BLAKE2b-256 277f44948a43f50c7dc3fa0b0aeb09bf637bb8eae9c2b8d37a283955c46eb96d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 195.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e15b68c3e448f39da5fa1871a9dcadaec7f84b81f6e1383c70a16d1f5a745594
MD5 db0f41e37084a269dbdf79feed7de205
BLAKE2b-256 e3740f06b4842ea85f240cfa4069a13a46a3f1842cf9395f104b9125a544a69c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 115.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d0ed8661b46adf47eabaf64b559b569f942d117a1fd042d7d6cad09bc82269ac
MD5 51cd42b3f0735926c94fccbb524744b1
BLAKE2b-256 eceb605d7a109756718ecbe81911de3bff01446483be8ff36333b8721efcb1ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 22da56d187f041b9cc4f762ef3677a37518f4dbed5da4197b4efeee49373ae1f
MD5 0ee500b12f47d94cc3dc8e3f4b2ddd21
BLAKE2b-256 c00b3b172937bde6fd0f71a3f2492cda37e745df7d179f2d884d9721730a1af0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6b77d7fc42819f4d05fdd0ef7bdabdfe76852ed8cb30dc9df8d3cce41a7b9072
MD5 53d0d927fb1d129e8bbb8066879b1043
BLAKE2b-256 456ebd6d48a83ea49d72c2bb8a7e60b9cc7a2804e1f36c69539f805a598425da

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1cd7fdb1d90435fd06330e59e30f09f7d646f7962f055ddd44de0b510a75bc32
MD5 bd7922349dc46a0e7e74d8dfb38030c9
BLAKE2b-256 298bc3bd1b52cf7ea6a0d4d4b7036a97bff68e956d196d08284bcdbe52e9b2c8

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 040ee5c57a3f1e0ce32819881d4769c67dcc557d0c07d5d41a3f28f173ca1a0d
MD5 278d0ac3e5a4c5246f4c7607a7aae9b7
BLAKE2b-256 f59456bba388bf55840f4dde8f468d745b21fbf61ba8e806166d87f70df849ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 286.3 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e55da0f148cb687563e58c841864febcbad497cddf30835bd6165ec1426aad9
MD5 8bf5c14c29c7ace81046dd6e68b446db
BLAKE2b-256 2fcc0eef70f89244e67321447432eabdb5b9b2fb080d9b76593601c1570ba3fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 196.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5949013dc4e431b356ecda9aabcb80da758d8effabecbae846e8770521be85a1
MD5 a29e0e51fcfab0d644d8ce545a46dbb9
BLAKE2b-256 e70a5cd38489fa029f27142717fc865c87c9feb7c3eb6c8c316e393810b4903b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 115.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 120ab0f475c0f11f7425e5dce6403b17fc671794bad0ba71a13c8251a4aa007f
MD5 f4a24538ea05d37d4e8ddaae9a62930f
BLAKE2b-256 c1b47dba527e6c516b0ee1a406e4b54af59ea6a952b692ddf8cfd6496c230f91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 34981441a08efac835b610aba2ff4e3b391a6b7294d64b0bfc7bac91c211df34
MD5 5eaf55051e04d24eb5f058fc6f53e008
BLAKE2b-256 31d493c34b681bb267dcc2655276db2f07ef3b491c129f037f280c68d9be7226

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cdc0e1c4d3a9dd3b687d88e8121cf91e13497a14508b00fbea093cac07f7d495
MD5 a9d3933df7e25fdd0fc59222b04d3857
BLAKE2b-256 c5bc7f0cc69b4f91c280afe308a61528ad8e09463990777a0873ad4d1668a1db

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c68f48c25c34de3a8ace130f3088dc19493c7f3508d1cf8d1604abcbbb719927
MD5 a91a94dadc565dac16d878ef4508465e
BLAKE2b-256 c16e07d384d324535bcb1cc678f30716782ab91d6269f8cf2fb2235786144051

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 46cc5c2dc095a77a2578d6936157b5d783f9a0714198abb44b6ce0c863843746
MD5 d500de5711569e6c807892626410acc6
BLAKE2b-256 60502217b3eb1195e8492551a1d5feae24ce2f7c9f6c1e6f3e7b51e3df631a9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 286.2 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e85c28068cf22257050ffc8663f9b03f594479f0a7f11018cbb32099f1251da4
MD5 85faad0d110f5ecfccef5d8645276ac0
BLAKE2b-256 3fbaf992cfaec3f69bad51bac895b494c63e754cb5cce3c6876f7c838be219e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 196.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3223483603e161c35f38eae16c36d30b608ab2f7b6214c3123ec1fb0d82a2b6f
MD5 169c306a9e5d21ab7aaf48eac8801045
BLAKE2b-256 1d1a6a5d2e557519e8e9b2125a462d4b390c0c34e412f57c0ad75be259fc8832

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 115.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 360d319e0f9e826f0a85cf24554b80542c214515ac0f3109a5f4c96acd8fd0f5
MD5 b0ae9c2af7b9e97a94c32c601b871904
BLAKE2b-256 a90879d46e1d14fffdd60046ca6109be0d71d93492bcc444f4eac447b5da3822

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f46a1b741f9b3a6763e3f4141196346f1729db5c8efe4ed9e404b04c8fb87aee
MD5 1b82f490556ede37aa3df07b9c66df7f
BLAKE2b-256 f350c9c22779370cf3314af40bac33dc2fb42c08fc5bb3f430fefbecceb763e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 647229d17dbe5329d12fbf5ed136c2d2d44aeb34e111bb8c00cbc68027ef79f7
MD5 f20cfd6878efbbee1536bda79aea19ea
BLAKE2b-256 8adf05eb59b1d93466f8312f2c47aa0ab081a2d1f546e9917cca725a1bcdbb40

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b36b4b6a52ff6457cb41859f55a440a1955b46cc3dc4a40bfeba177ebe8bb074
MD5 adbedba3138b2c275b28355b2d2067a0
BLAKE2b-256 572ce67ab8c0a7308370c49a548570c7c0a4598e1150f3a083f92ed7ba898f90

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8122c305bec1f947dfc5162f52c0b68dea6e19165a1e689425fcd0f688d4c1c9
MD5 1340e3f504ef5ab9e23f7fea8f2797fc
BLAKE2b-256 839fd16d8c8a29278153e5d7a2c25c7c9914ebf7792e553bdfccdb32d0a7aa5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 286.2 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0f9f38817cae349a305099b66a47a36295272e32d9416035f31748188f94cf1
MD5 b3738dabb228c075eb9f0217e67e3dac
BLAKE2b-256 fd964df6624d6f57ab788c4d0073e9b6615afd99a065bfccefc6f8bc96ef8499

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 196.0 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 8d8ee6cc74a9cbb1a36559cfdeee07f46af169627b122fe9c3d38edd80a1f143
MD5 c5f7e989295cb6bc64fcc5d5853d22fa
BLAKE2b-256 380ed73df4b07a6623dbef31ac1139a1b2903538b9665bc0870f27a1a289f2a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 115.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 16f99227a0a46ffe5774af29de73f196f4cb59fdd3552d6a38e4bf6fbe75049a
MD5 225d9c4d3d41608f2b3620516d9a6c79
BLAKE2b-256 44b2475fe90fe6d742e8270a7e10450898dacae00d424e08f60e00f1c5a9ac15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 16beaf9d959edefad0ed621a57becc43f672316e007b07bf1f9bd9287216589a
MD5 4b909ee287aa9adb7e1fb0bb4919ade4
BLAKE2b-256 4465c93c9f1070915ffeb47968d27763d0651962aa11887b0a87a3da947e1fdf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1bfeb279ac038649d3f07abbadaa714dffa25b4ceebf746f4f072f0a9acceac6
MD5 8a1384c7b0419cc5f82e953046f568e7
BLAKE2b-256 cec51a4b5c457e16f825aaba5f869a7b9b73941703d782f10a2a914afdc2605f

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8f28db518934f156d15b4deaf30619216e0596a2f351dbe3f57e542c56d4bb93
MD5 72bc51b271b7ef0cfde94d8b9b36f221
BLAKE2b-256 f8ed4a117696ca933260f09f921153eab4f8a5db7430052321438b42a0ac0ebc

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dfa9bf4dbfde90bac2a7aa66af9696cd8a1b4428afc69d7b0f78a51bc95d6963
MD5 ebabed42c8873b673dd5470086331acb
BLAKE2b-256 f67674fae9294c6faffffcec39c80a385aa8db9fb23a36bb274644b4e328f23c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 276.5 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f79b61c97879f0d508a8351dfa358a756958d6afa2179048ad8d3ad96dc7fe5
MD5 592fc95ac7bfcddbf5b35ef11806c6ad
BLAKE2b-256 40313efa0272b62d2918993a547990d1bc29c83bc9755932c01d07638c2e556a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 67e32a58db9e467677d0b6e61121dd397daa948fee04de82b91da79179d266d8
MD5 69b813d76fc82c992d580276edc2ef18
BLAKE2b-256 cd659f01ce7b4254f97cbded7e4a1248d571fccfc7c1246c1a020ea8903fa6f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2127dbab28df7c9b6cb8c6a08f684cfd595df00a6c14b6332839d463b1d8a807
MD5 fd609a45d0e79eab3ac50e626e4147a6
BLAKE2b-256 0dd58e90409636800d0a9504ea94713048ed4fcc11fc81dbdeec66f944028839

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 25fca66a776a101e41859716295b7d51e31793a9df7f1ddb0bef2cc674fc3349
MD5 d7a8030b0f3b6e43b8feb48e342d369b
BLAKE2b-256 91b1187faf9aca835d896cdc27892fdf43f484d64267dd434939c9bd8083505a

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e7509ac29b62fa2decbdc31af3f3af0214d6c0308410b23e30560d4ed121e2ab
MD5 d123deebddfd15b9b76ed511b6e4ae82
BLAKE2b-256 8d4004a658f8727bcc04a51bfef587401b586927f99f18e8aac64dfac30296b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 115.5 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 0c41f8efc5202f24fdf017cd0b34f74aa42ce1dd06b737676882f0d1599e47ca
MD5 44bee6479238abacbfe06a456e211ba1
BLAKE2b-256 fcdad8613b997c88427e5ddf386c0ee598c7fec42d6034463537a095f115a5bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 79.3 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 9649351ff919d7368ac7a9c72b8ef2c95a592770c0434e880378813ce437cdd2
MD5 d7268b40f2fe703ec3346ea900eda110
BLAKE2b-256 ba66d367ae4336f72c2912c6b7e66cb958568f52dd1ba5d4b15d35f44cc96ee8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9d7bf8a08e4e8d49ff7a325473b93b56739dd25ddb650606ff823ec822de9a79
MD5 4acf629057b55691582ae423209ac794
BLAKE2b-256 8a444a7ed60f4fa9ce0d6324c17603929a2ab93aa945801c7d0b0f4858587e3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 df448a98c977d31891d9276733c2e7e134e8c2ed56bfa550c97a263efd003f5f
MD5 071e563eb1806b0d98a13066c2863d05
BLAKE2b-256 f8c5992e20ea656918d2f65a06c21027125f80fd3bb268fe5e564342fb90da2f

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e37d1a4f03cb1457651323075a356a4b85fc7acf6f05ccbc03c7206f200317b9
MD5 0c2fca45c9d6b7d6e3f9f6bc075f4253
BLAKE2b-256 60876545c687cc46a7f9319c14d2faa2ac3f0b81c46ba3adcca6d09e9549aea8

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.14.2-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-0.14.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 990c6df3e7f0428ee7f80572d1e3322626f479df300bebf1b3b287a3ff7c8ddd
MD5 1b25a0b0af1b7ba65673c8c9fdbef25c
BLAKE2b-256 da0fbbd5f6d30b72544b5182dc40a6427a48c5b613a1b22d50b710d7ccc52004

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.14.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 168.5 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.7

File hashes

Hashes for rapidfuzz-0.14.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53f0af43c09fae22594d1c88a9398d43061f1ca3d5fce4aabf0e7b10ae5b233b
MD5 649415cc002aa266426efad112075e10
BLAKE2b-256 65f1c88c04b635ae32637e87afffcccb5d322393714fd7c19d09511e4f2e8ca3

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