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

Uploaded Source

Built Distributions

rapidfuzz-0.13.3-pp37-pypy37_pp73-win32.whl (113.9 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.13.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl (272.2 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.13.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (251.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.13.3-pp36-pypy36_pp73-win32.whl (114.0 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.13.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl (272.2 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.13.3-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (251.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.13.3-pp27-pypy_73-win32.whl (78.2 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.13.3-pp27-pypy_73-manylinux2010_x86_64.whl (179.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.13.3-pp27-pypy_73-macosx_10_9_x86_64.whl (151.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.13.3-cp39-cp39-win_amd64.whl (193.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-0.13.3-cp39-cp39-win32.whl (113.9 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-0.13.3-cp39-cp39-manylinux2010_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.13.3-cp39-cp39-manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.13.3-cp39-cp39-manylinux1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9

rapidfuzz-0.13.3-cp39-cp39-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.9

rapidfuzz-0.13.3-cp39-cp39-macosx_10_9_x86_64.whl (278.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-0.13.3-cp38-cp38-win_amd64.whl (193.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.13.3-cp38-cp38-win32.whl (113.8 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.13.3-cp38-cp38-manylinux2010_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.13.3-cp38-cp38-manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.13.3-cp38-cp38-manylinux1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8

rapidfuzz-0.13.3-cp38-cp38-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.8

rapidfuzz-0.13.3-cp38-cp38-macosx_10_9_x86_64.whl (278.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.13.3-cp37-cp37m-win_amd64.whl (194.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.13.3-cp37-cp37m-win32.whl (113.8 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.13.3-cp37-cp37m-manylinux2010_x86_64.whl (4.3 MB view details)

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

rapidfuzz-0.13.3-cp37-cp37m-manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.3-cp37-cp37m-manylinux1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.7m

rapidfuzz-0.13.3-cp37-cp37m-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m

rapidfuzz-0.13.3-cp37-cp37m-macosx_10_9_x86_64.whl (278.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.13.3-cp36-cp36m-win_amd64.whl (194.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.13.3-cp36-cp36m-win32.whl (113.8 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.13.3-cp36-cp36m-manylinux2010_x86_64.whl (4.3 MB view details)

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

rapidfuzz-0.13.3-cp36-cp36m-manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.3-cp36-cp36m-manylinux1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.6m

rapidfuzz-0.13.3-cp36-cp36m-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m

rapidfuzz-0.13.3-cp36-cp36m-macosx_10_9_x86_64.whl (278.4 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.13.3-cp35-cp35m-win_amd64.whl (194.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.13.3-cp35-cp35m-win32.whl (113.8 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.13.3-cp35-cp35m-manylinux2010_x86_64.whl (4.3 MB view details)

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

rapidfuzz-0.13.3-cp35-cp35m-manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.3-cp35-cp35m-manylinux1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.5m

rapidfuzz-0.13.3-cp35-cp35m-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.5m

rapidfuzz-0.13.3-cp35-cp35m-macosx_10_9_x86_64.whl (268.3 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

rapidfuzz-0.13.3-cp27-cp27mu-manylinux2010_x86_64.whl (2.4 MB view details)

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-0.13.3-cp27-cp27mu-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-0.13.3-cp27-cp27mu-manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-0.13.3-cp27-cp27m-win_amd64.whl (113.8 kB view details)

Uploaded CPython 2.7m Windows x86-64

rapidfuzz-0.13.3-cp27-cp27m-win32.whl (77.9 kB view details)

Uploaded CPython 2.7m Windows x86

rapidfuzz-0.13.3-cp27-cp27m-manylinux2010_x86_64.whl (2.4 MB view details)

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.13.3-cp27-cp27m-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7m

rapidfuzz-0.13.3-cp27-cp27m-manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 2.7m

rapidfuzz-0.13.3-cp27-cp27m-macosx_10_9_x86_64.whl (163.5 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3.tar.gz
  • Upload date:
  • Size: 58.0 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3.tar.gz
Algorithm Hash digest
SHA256 b8164f78881e4416092504cf018a080959e7444ad2c7c5e6b0343e27e0c50968
MD5 cbda22dd255677ed7f3ecaf08cca69cd
BLAKE2b-256 76ac5e6eb75370191b71fcf8966283531c6256eb781f19c67bd54404e2f12fe8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 113.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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 c6b8e0ae37934ece74c004f564ac1d6028a14dddeeb3297fafa9b982e58c8862
MD5 dd63ec05cbb973d2cb7468efca8fd861
BLAKE2b-256 482f6274a4442851c9a84a345059cf87efcfc3d0b55fcefed24b5f102bde4ad2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fdbc363f0f3529fdf49820b71052e336e27da65788d92ee894cca93665c1f42a
MD5 07157e1c7be3d3c37dc39353c3b72b86
BLAKE2b-256 f3e8abe5e1d7d48a839a683fcf69c334532b4041085a0e82f30f1f0b0b60c700

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3de63ee7f4ef0d3aab945b0768ed55a01579441d6713f382ec26e7fcab4f147
MD5 2afd7a58af4081442123a3091dedf8e9
BLAKE2b-256 decc6323e8580d4d52967c4cb7394be3f4adcb97b010557dc59e6715804aef55

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.3-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 30cdb8611caff4c46885e121ab81a58fa5e8a49373e588d1c9af80c8150bc46d
MD5 7465957d5c35256ef5292d26d62965c7
BLAKE2b-256 eafacc50b55749045702f0b45fa9c1aee23e360a412e6d85d01441463d41499e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 94f97457385375de7826e7bfc85e766d8817cd2193c3fb734525dbd36d7f6d6b
MD5 138ba4ec00fe3f5e0662b18a78c0c091
BLAKE2b-256 18f338d2bcd62797222b09d3f38fbbc00d7f207609b5e656fdd2c85b52a06698

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.3-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77ffcb1d7fc8d8b106975d5d2c82cd0fe6f9a930fcf12e434bdafd2b052a5040
MD5 765151e6dc7c660c55d1761eb800e6c0
BLAKE2b-256 16e838694bb55afa9ba6d77e2503190bdba3d27d466ffd6d39ca03bf2535949d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 78.2 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 493b7004c027190bb3d76a4a0cdd72a202d3dfefb22d2b866c3bb644c76aa47f
MD5 6b091b3455be97c678861f22d266c056
BLAKE2b-256 4dbddf2d79def6fcb5ab89f4ac4a987fe0fe7b611505c55f108dd17bc930b33f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 179.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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 61e081eb6a7a19620741ae9ab3214815c45dd060ef4a209088d8fd890070cb16
MD5 d75247fd02226dd2668edc170257d8f5
BLAKE2b-256 3ab60749f238bfc19813827ce54b2400ae6e734ed42f2c13dfb1310611241a82

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.3-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de5b2e3580e4fa88f6260b9f29edd53467f2057f9da962f0b6d51abf508acdb7
MD5 9e9e479e90cc49f863d4a570cfe2f673
BLAKE2b-256 0b5b0e798d00d6e41114a92bbb136f4a4afed751ff1941d96ab56ad648dd3690

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 193.9 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d998aa5d1bf7fc26a883daf3cce0a0a1101a5f361e25cf8272dca662011cac62
MD5 be9b926601366409549ab78bac3b22fa
BLAKE2b-256 1c19256dc2625d2b71fe086b59d72067b6aa5738b1081605d0c052bce0b33ee0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 113.9 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 410b6315ecae1d7cd15e54786e721b289ce0fe2e2bc6b76d8e02f82a1044fe20
MD5 92a12c195db2e397a1df36ffa1d27ae1
BLAKE2b-256 37a2d11b2eb69bc6155df4c160dc3bf14dfaf9deb0a6270a9c2d67a16a9fe516

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.3 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aa1a8bac3f0b38926ca09beb74f9721c7b01dcc0ccd66215af5e209648236bfe
MD5 777b27998cfab6cc0416415e425f993a
BLAKE2b-256 f472016675304a4764facd4b9456b3d3f2ef8a6d2e3c52247a35c1db76731e21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.3 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 933cea2f940dbec85b0dac08dd7e17c78ffda27de00a20f85e7391d1a425860d
MD5 af63d2b287808bd359341441d6c58561
BLAKE2b-256 1ed95e3185cfdd966126245cd93a4aec856f3caac0f5216829c87f1ec57f9bbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 42ea5f37f501089dd3ff84a152b057d6395e34d76f434be38b268731ad282455
MD5 79ebca67f56377ea0aebbb405fb26512
BLAKE2b-256 36fa20d80e711d934915a516551e9e9396621709599993d2b9eaae8d9b03ba27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a2ceb8d994de9b8e6b1eb4fa7620cf3ac249626540a45f2232ec007b1adaa71f
MD5 68d2210e9e1b9df4074795bbb60385a5
BLAKE2b-256 c67e415f9253dd556fecaedfe05dfd832bfd2cfb15bbaaffbce1bb52b37a2859

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 278.5 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf758ff31524f0b9742675060493204b5ec7af23480d78f28f81e10d4f648e3f
MD5 7b43a01250a889fab3f6c0d74e468482
BLAKE2b-256 d5db4dc483a94c0252530cef3919415be1138161f7eb2c4e88c332445c141972

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 193.7 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d7d9c1125153351f8c8172e9516b040368ff1b263fca528445d99c611f298d16
MD5 5a382283e828c157976e0b69ddead52b
BLAKE2b-256 23110f3bfda4a9dfee8403144a9ec539170a3a6f50fb4e3d8128620e2916f1b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 113.8 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 92e58f7594e8c0bb3756ec0dd25eda5d272808579ce0d1a8126e1208fcf36efa
MD5 666f0794035f419a6f98cbbfab9bd7a2
BLAKE2b-256 05755e63e8f1cbfceb2617bab9f3c416193bf4ce5f2f9ad65957b016d9e7041d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.3 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7e33725b1d8aeaef0e51704ef74f026c6737ab9a016846a7a318d5258fa01caf
MD5 2c7f727ab63fcd06be97f1321dbff6a2
BLAKE2b-256 d28992529d7ff205894991f13a89e8fcbcca617445c13dc09102b85f1b7dab18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.3 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 778713fe6495f976c0d141eaceba4a5ecd9a24a75aea0ab8241c4d047a08461b
MD5 b4d711673cebc4266c0260dc76a89846
BLAKE2b-256 6f7d3f6d1690f341efdfdcf4db71d7aba61195e4451f42b0aff40e0257d086d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b3c42d1c42e09696f70d7e1d8bb919f3198069f44b77edc7415f9f9c02af5cc9
MD5 112f1ec9672b0b26306015f617b7a899
BLAKE2b-256 305451f66beb2582ab4aadcc9b9c0072e23d831f92b77e7766d7af94a6835b8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f320816458edd3328213f0066f750181c004ef2d7094b3c694f10cb25f973b57
MD5 f88d243aae2a8a0e96032a15a75eb765
BLAKE2b-256 f5d95f9655c0e7b40fa4f898ebd7b2e5a3e35703bb8b10d6a3cc4bb36902d248

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8addababa5e07756eab4f3edf3013893058aff1ae2db918a14a40457464e51e
MD5 84c804d4a3099f80c9e8c74a5a2d6e06
BLAKE2b-256 bf2ac52f6212a7737782513597faa2d7f6ebfba09c79b002af924cc43cbab1bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 194.1 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 22ee15e8cf527a704a96ffdc1bf38300bbed9015c6048a14819af214740f1c64
MD5 79d0296ae4e73ae9b4b1408e1ffba63b
BLAKE2b-256 a1d06770c3ffd8e892922b07380cdc66a712f70c9047e91b5d182f464b393336

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 113.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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5cc2082a6575c8efd1a1220830afcce73e21b5ca70134458332a7953425e3b30
MD5 4addced358d6c520e60de1b3aff81ac6
BLAKE2b-256 360445b559c82423d44625edf2d0ee9511406fcf264eda4c515b00f00536ddb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.3 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c84ccd7a8c3a432947b4225eed7aee918316624f0e80e9df2bda29f9ee7d166a
MD5 0a735ee00a1a3cbc7b81cb9dc77b9e92
BLAKE2b-256 d2fed73ba56c4483faac64819afcebc0bc2632f1bcf16de06f0cd70fd60f6aa6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.3 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ad6cfa04071e5e42876b230fab091175bb425a02eb14c7a84fc58d1ecb08a9db
MD5 c426f0ae6a6fa3e3a7db87d38256c415
BLAKE2b-256 4f3e2c2c5c49bdcf7dda0acd13791ebc856b0a1291cbda61c889e876b42c4c8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8b6a7081d8d0828a145d0d63ffd286bcdd3a443d777df20c01ee6ad50abc41c7
MD5 9a9ade95c2114699218b0c199dbd1b03
BLAKE2b-256 cdc0c18f0f3425998aa5fdfddd4f64423ee58daaf4bbdb8d57a6d1a9d3803554

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8966811724d84fcc57a2524926ec922d7c4d7670925798e5e8bb4e766991bda2
MD5 f4fd84e23e0ce07415f57feee74c52ad
BLAKE2b-256 fe10822e9d92783dea74a99db264d5bcfcc9f3a2d06956d18bc2a6d27b07dd1b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56f19711cca9d97a9d254c62040881585d9a15c449a845d474f158b062866e07
MD5 e70d9e338fbc8e6ac40af8071d7b5a9a
BLAKE2b-256 62b737e48cae7c03761f2b600ebe85b0f9f539ac876e253f3c8382702bd0589d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 194.1 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 dc03a57fa02d8eeddef11bbfeeab5cd8df653ae9e7188c41e174c87b47ae398d
MD5 31b1c4d8171a8855eb97568515350734
BLAKE2b-256 5cfbceb501b7ffa82e48efd93364aafb1e5d1c99efd3a321edaf833af90e0502

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 113.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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b70880f84dc7f26ae16848e323c3f99f1a1b2bf85fa2b05670a6b5f927bafe2e
MD5 e274b9bead73e845c2ce75842e34d33f
BLAKE2b-256 1e4b6cf444244279bc37cb4e6a6d51f4a580ce7dac4d7725ea239b085bac3e6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.3 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c0ac41c2f9bcf40daa8776d818d37f5a04fe61c72721a064927f6a53553a46e5
MD5 5c38caf15708fa6ba11f690620ac1b58
BLAKE2b-256 f320286403870697b6d19e1bb7f1a44e6a625e3ced47f5b06ed9853f36f8653c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.3 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 67e1c301d1d44b092df8e02400a0860bb118250cb324a7fc78d8dcac5fff9bca
MD5 5cfefb9dfaa2a80c252ac9b98bcdb202
BLAKE2b-256 6cc317072ef7e7d38643907cf26d5f6777b40b7f5ce651eaebe062606a87f13c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.6m
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c1e634dc991fee60d7769d5495ee6f67fb0b679a8a441531225666fda9f2345c
MD5 83a05a9b7099562bc9831b6fa370bb0a
BLAKE2b-256 b8b4dc0a9967bb682aaa2375d1beeee19ac43d222b735943aeeac21dc524ba41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 13345dee822e7365bdcc2a47327cde26a208e2b1df195226f11424ac4a5e9d1b
MD5 5a4b6b2dbf82e4ade63653779924ee6d
BLAKE2b-256 7b163f295fc6ff54c8d5b32cd22be4ad56a42363720d8f1cfcfa4c96ebd7188c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa4f73846d7619f94f5181f8f0c7b0895f876f73315937248b15abb88fae3a7b
MD5 8bee6739813eb4a3d93facd8cc0b2357
BLAKE2b-256 685ca347be39ad51b9af911b244f17eccbfc811a60f72d453ea66cede5e931d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 194.1 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5e7fa686c6a984b3e7efb852cdb8adc39f81345ebe8f358077cae7cc346523d7
MD5 62682b6065e64d3990589228bb915a32
BLAKE2b-256 acdcd2dd08f253a91d816232483b30dc6e4ff5f45910dae9f05d00e49948a0c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 113.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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6421e9a3f7c2d6afdde103ed9e4238c651c88ede5d212fbe5ea01661be7aded6
MD5 c6c852072eb7ed4e714dce0c50d7ce1c
BLAKE2b-256 b3a1a8e78fb90adf321681b819768cf85aa0622b59399996e30c0fd472554447

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.3 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5da33dc1fa5f0bfc73f2e515d1d3157bb9b6117b8244fe489fe94a7577abcf31
MD5 7d3d155d271bcf16f0f3f2abbb118b2d
BLAKE2b-256 8d04f441095a8e2e58fd8a072d6d38e877a07a9f4218c31b524895f3bce5ffe6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.3 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 685cef8428ccab17eb9827660e27bfe50e24cf295379a5da4a01a53273232b54
MD5 dfc794d780254590a554f96307afffe1
BLAKE2b-256 edfe4969f537e1463344fdc178572e1848e5c00bc3f549677e66d8055e28a5f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5m
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 91d3b23af445aae3332ffba9c0f694adbf8a7eb6c2bb549a72a427fbb579cad6
MD5 bcdff2687fc492e426baeefc0a7fe25c
BLAKE2b-256 5596e38cdaea12971259d64a2fcaafbba54a5380e12a689e4d856e9e542ea658

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 42e5a3b7fda40f3ffe7874314d1fe0b827d9d8af1f7793edd6f8b85ae91cff6e
MD5 ac9348521438cba7ad8618e6af4c48de
BLAKE2b-256 c4ee3f6bdc09c465345b4158e412f3edfe869d05659c2cca8f89b963bcfb4916

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 268.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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2f6ef91196fa6e2418539271beb288d3df10f6ab89f99094b8014485f1a6d809
MD5 e2a62ad35610001bf850330230d06302
BLAKE2b-256 411ee2c2a8fc65c55031da3b5b5fd6e7c927b35a3ea846938638d630e0a33341

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a1f802dd4399d38ced8f11ab41bf3389b0e6197adf9bd31791098d6e8c45ee26
MD5 7d87a9381ad6d69aada462827ddbd3f0
BLAKE2b-256 3e8f716a890872f2e6dd88e541b27a86a191f319ceb40f44cdf62a4fbe91b533

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 23da69a22773e0a49e376daf3424cb2cfc1282d98255542f2a8d1523c8f8aa33
MD5 026a6eb89b1ffa118195195a0383451e
BLAKE2b-256 929364318e045bc35a8299908b1b16486760ba380a5619d1284b29ffc41abb98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7mu
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1c4da0904de695b65928ccc672407bf7ff409e43fa2c69fda4bfd2e3eeb665d7
MD5 0e8209366d4e272314b0d47faf5064c5
BLAKE2b-256 16e8b35155cdbafcf92626bd1ec08fee637580634ee19ed753f60aee10e84059

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7mu
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e86193c5def914fdd07d7c9cf4925eb487b49738e2bfead90c906d9451f2e88
MD5 2f4e5513d9340e7d72dfa19d048a53a3
BLAKE2b-256 5ec6de667a016b7cbdbee799e3253555b7aa6fe39913ceabbd2b4f6280cb2950

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.3-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 8336d857de027f60744fde1e0c4264cb9aceaf90aa5ebbaaeb2597e98fd2cf48
MD5 37f684e4a8823f1cacd796a3aa440916
BLAKE2b-256 dfa33d2f9a220d642d07835c7c18d53da2f05a2994b0e5f4d4859c3ec7eae774

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.3-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e5d944a07200b6e6285f08920268c281da3e22a9a24ff9da79592e64f14b4be0
MD5 3b1af468ec9db8868004431652831a6c
BLAKE2b-256 d43120cd0149e972ded25e49542b25b70b20e182385ec1f7aa47b5d437e82350

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c9552355d6eb9dc3b30c588ceb4fc3b5b984ef5143dc9e4be5e0f05159163762
MD5 bf0729869723de820c58ee595d072c40
BLAKE2b-256 46e038ce2c1c67677e54f851351e2a5115144ca9e5da9ff00474bd95e63fcbfc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f31bcfc05b213d4565de1a2c5370415f0549fda9cf16cf210ad0b195a13728af
MD5 b99fe0cf77ad93da0cf89d643f12231a
BLAKE2b-256 89b2a2bebc05400a74d69666c429755277b0fbfff0228e6871b22bbca4372004

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 51a7860d5cfb09e3dd9419746a0a5a6b01a248df90d9708835ff41104a2363d1
MD5 72ab4b97e7460518641a05692a1f1065
BLAKE2b-256 e8f5790b667c73c98cad38f78b37ebdc469d1fc1e0142ac6543fc2866dc53dc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.13.3-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m
  • 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.53.0 CPython/3.8.6

File hashes

Hashes for rapidfuzz-0.13.3-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a4b2cfe4b4613ef23b1b0306df6cf43d434881618f20082f45961d29de62f0b7
MD5 3466e87a6454a39a74ac02ab359a1dc4
BLAKE2b-256 b42eb76a5917fddcd53e8bd4114992c2d6ba90ccd396a632d0a9f9262404a374

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.13.3-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 57cd848262eeb7d078694dd1504db0457c6c6038ecba47ddaf9d0f0d9b5f9322
MD5 f2a849de3bfdf6bfd5ecf783a7775edd
BLAKE2b-256 57254d2289bd80569606ec94fb428155f6bbf99c5fb5f5b71f82df443fc3b3e0

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