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

Installation

RapidFuzz can be installed using pip

$ pip install rapidfuzz

There are pre-built binaries (wheels) for RapidFuzz and its dependencies for MacOS (10.9 and later), Linux x86_64 and Windows.

For any other architecture/os RapidFuzz can be installed from the source distribution. To do so, a C++14 capable compiler must be installed before running the pip install rapidfuzz command. While Linux and MacOs usually come with a compiler it is required to install C++-Buildtools on Windows.

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), ('new york giants', 78.57142639160156)]
> process.extractOne("cowboys", choices)
("dallas cowboys", 90)

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

Uploaded Source

Built Distributions

rapidfuzz-0.11.1-pp36-pypy36_pp73-win32.whl (83.8 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.11.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (159.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.11.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (132.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.11.1-pp27-pypy_73-manylinux2010_x86_64.whl (117.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.11.1-pp27-pypy_73-macosx_10_9_x86_64.whl (88.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.11.1-cp39-cp39-win_amd64.whl (125.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-0.11.1-cp39-cp39-win32.whl (82.8 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-0.11.1-cp39-cp39-manylinux2010_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.11.1-cp39-cp39-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.11.1-cp39-cp39-macosx_10_9_x86_64.whl (136.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-0.11.1-cp38-cp38-win_amd64.whl (125.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.11.1-cp38-cp38-win32.whl (82.8 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.11.1-cp38-cp38-manylinux2010_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.11.1-cp38-cp38-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.11.1-cp38-cp38-macosx_10_9_x86_64.whl (136.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.11.1-cp37-cp37m-win_amd64.whl (125.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.11.1-cp37-cp37m-win32.whl (82.8 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.11.1-cp37-cp37m-manylinux2010_x86_64.whl (2.2 MB view details)

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

rapidfuzz-0.11.1-cp37-cp37m-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.1-cp37-cp37m-macosx_10_9_x86_64.whl (136.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.11.1-cp36-cp36m-win_amd64.whl (125.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.11.1-cp36-cp36m-win32.whl (82.8 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.11.1-cp36-cp36m-manylinux2010_x86_64.whl (2.2 MB view details)

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

rapidfuzz-0.11.1-cp36-cp36m-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.1-cp36-cp36m-macosx_10_9_x86_64.whl (136.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.11.1-cp35-cp35m-win_amd64.whl (125.0 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.11.1-cp35-cp35m-win32.whl (82.8 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.11.1-cp35-cp35m-manylinux2010_x86_64.whl (2.2 MB view details)

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

rapidfuzz-0.11.1-cp35-cp35m-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.1-cp35-cp35m-macosx_10_9_x86_64.whl (127.2 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

rapidfuzz-0.11.1-cp27-cp27mu-manylinux2010_x86_64.whl (1.5 MB view details)

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

rapidfuzz-0.11.1-cp27-cp27mu-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-0.11.1-cp27-cp27m-manylinux2010_x86_64.whl (1.5 MB view details)

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

rapidfuzz-0.11.1-cp27-cp27m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.1-cp27-cp27m-macosx_10_9_x86_64.whl (96.7 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1.tar.gz
  • Upload date:
  • Size: 56.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1.tar.gz
Algorithm Hash digest
SHA256 b9d2cdce3afdbc29155a061f9a319e971b48e16c2d2a134d01c389ccff196f86
MD5 c6a14d4445ee5a7df4e23cfe2c1f442d
BLAKE2b-256 9b7c3582dc2c13dd0f4098e3a3ea8e89c6fa7f42e4febab57a1b7bef45ce3da8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 83.8 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 c68695d1778afcbac7f3d852c903449b99a7091f2c8c7525b7948cc11b7765a6
MD5 6056c9115ccaba9922b11db5e7dd9d7c
BLAKE2b-256 44e9ce2405ea53fe0e075139de85142cd4d80f65ce3de2e7608644317cc42602

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 159.3 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5671983f4e9d7d4ebcefa08cb47256b642759c42c8d31008b7f52dfac0454fbd
MD5 699964edb534f95e378664b2ab16fce7
BLAKE2b-256 e09295b13a3b799573c95413135a377e34d4d6b03adfe70c9d83b624b982a3fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 132.2 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 119c18e8447ed73935d1d3b0193be2a417a74333ff35cfd5dd9be0ad1625c1f2
MD5 8c45ba0b1689bbabc942c796aa9b2bfe
BLAKE2b-256 c03071e892ee784055779c43db1cd14b67e93191d0d4917cde39ffa6befdf12f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 117.8 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c77aaa5ef65dc49d20d2afc17c205fb92dc18aabcc77832b31effae939469935
MD5 0d81b3fa97a4d06f6ed02607a3c7a5b0
BLAKE2b-256 b7ea926c45ee2ada600cc90f59123b6a5d2115f8839ea659d185993cdca525f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 88.8 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d4255d0529e84a372fc19bbcb67845df21f7d2b34070ad2d13f957c263f73e7
MD5 138f5cb3b52a6b0e18904cc116e866fc
BLAKE2b-256 6107401a22bda03b34c1d29eef4eff335852e89d7fc3e617c05d93ae69c71799

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 125.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a7c07203a2ff7cb04a36354d02ad552153d0b0e7765c0ff916a0d4d33584c079
MD5 3dc89ce7415c45e8e252c919e4000122
BLAKE2b-256 4a4eddc3396e775c8ba1632d345ee680761701e8171cd979e1bc198d361617f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 82.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d0a6d2843b30d58510ab484954e3b555e6728ab79abc131a8df9a7d20813d37a
MD5 b471a47770b206927cc2876c8de8b06e
BLAKE2b-256 048911bdecf65a3d1173f1c3f6af700a6b4216552d094807a12aa128810d3d5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b65446002f9ac64eabb36cb52227ce4df54b9a6f3b40bf6310646305851bfd51
MD5 37f0e536713372bf2210b433af34e86d
BLAKE2b-256 d872c57ae75dfdb79a987e1458470c2e2f54fbd53ae490d9970c5ca39afbb865

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1c308c337a3d08fcd55226ceb8ccf9b9e0fcac649b5e5df8a776f3166d685c42
MD5 7580f9026370c0cd34738e2ef3ccb311
BLAKE2b-256 86ada96b4a388a38e702bc352fd319fa84add256f4661771d00a5d3d5903667d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 136.0 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6ab39c301e7d60b3425cc54a7da335104ba285cb7e4824c2b5a31a6dd5ad296
MD5 ae4f25fd203a135b8947e8c542733870
BLAKE2b-256 4adbd2de8d2bb84eb2cbf899152dcf758f98ae7967dc7bf4a2506ad8d691b629

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 125.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5eb48e7fe9a3016c48434cd1b37672568161e931120e8649b0610ffa98e704e8
MD5 ed4b2ed1d32ba48e23830b78a1b9591f
BLAKE2b-256 bda72e3ef180f59537c8deac91f9bfb247ec1f015bed510a3a163badd5c49011

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 82.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6ae029bfc81bc198f09cafad786700f5c602d011d4f562474f4c5b2d2e00bcd6
MD5 7a612eaa6434eb11017f14951ea55d93
BLAKE2b-256 60d5916d08dbb4251ef6d3745065c7314a174e6215518e67a8c334dbabafd367

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 43724c3d18796ca8572fefafcb96e498e1c188f36239c60f5ced8b399f7a10b1
MD5 565ec2378f76ddcd874c23ca86aafddd
BLAKE2b-256 2cde850d15bf2fe095438d2add237439652b7584918e668ff42156b90d80d105

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0967a522a972733a1a69bd53de1f8353ea9158b8ab1aa1b8695baf99c97a49bc
MD5 fbe9679e4c01ec1a7af37fea05195615
BLAKE2b-256 48fefb80149ba959a5665b50382e13a1f6a1bf4e0ab15ebe0e5b29706d5d865f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 136.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6b2d0e9f157cde8339e4d63f1611c084155cecb238ea436c6fc88958fb1c3c0
MD5 b25d92a4a669cc6cf1ab106159555850
BLAKE2b-256 188a052bfd2149ae263d9aa1c499e41666ec85ef8953339653abac4061cfb7da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 125.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5fe85db4ed72c1feb9944eacb9636f4c3c94f4ea41efd5436587f9fa35a84a2f
MD5 5400a5ee51afeb4fd19081d690b644a8
BLAKE2b-256 5d7f76742a282828b84496841a601c25af32c17fe8d33a3821627946bcd8385c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 82.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b2937e044efbe7f6bcb2b8e00dd3118b078b8448bb5cdd60c8a2ba971b65bbc4
MD5 67cd6c29d747c1a02499a84575aa1268
BLAKE2b-256 1a6f31c3bf883078ab8388fa9a707d40457b9a17e44312ca3d00eca91eb96d82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7a8a399ab67b359a0c543bb78efd0ac47cd19b02ec4993c3322b899c98439a2c
MD5 91bd59b1c6c38890d0147c089c8b33b2
BLAKE2b-256 42cfc029ea371f7effcde73f14457a9f6e5e0f4cc72e06d689d91488ae128fa1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8a01e5a415489fc1e432a504f99e26ed16847ad795943933c2295f8f94843169
MD5 d16e18d8804e8a74e37c2e256eea71c8
BLAKE2b-256 ba4ac60c03a1fd951f95f5d54ea27973d5d76d0bced7d42fd926f075e84ce664

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 136.0 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b90e3b6e6bbe51201c4f8e10b593c5206dbd9f8e7d110df1b3c574ba19fe031
MD5 917e83a6046e9e6928ca9fbbc0485133
BLAKE2b-256 a9ce668021466547ccfd88f4d2536e63a92e1ace0281b5d4f7abe543711bb93c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 125.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b651b5d4ca27b3f9ec1a5270dbdee82b14bcab45b4c364e69410319589e5ec71
MD5 7918f20ec29d7ed14edc556ee28459bf
BLAKE2b-256 5eece33e40a5b139c0fbbca9be6503dc812ab9a2c4eb633ea01b0ce50fe84fa2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 82.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a1de9f1bac555e696e0db4c2aa617d1545e0046405c803a136a2942c2cd01cb1
MD5 7ea209a0b7507b735a8b2c74f2d0f73e
BLAKE2b-256 15b88e7b7dff9950e2b1a5e11705327a71a97683af5020375cb753d24e52f7f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8584bd3b5649e7dffeb93df8400a47f2d7d08b7795279169c18331f3d43b0bb8
MD5 da40925f60330ae38df2f772b7e2e5a7
BLAKE2b-256 3a00d1d68b3600395557ece71ef4a119c65a09ea8cd1f27490953d99b0253885

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e69c025542f4b056f0c01f7851cf2248b679771821939a90813e546deddeaf7d
MD5 03b2c2a4c0b63d4ef1672d41a9ede059
BLAKE2b-256 f86769aa67d26f6ce6584d728e7a398f33108b19093e2b3a242d51b7c0db63de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 136.0 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c946a6d5584c429e2c9d52f0338aa792ec762ef8c55e0508c25b5d4a87415a8e
MD5 d2ee75cc6df9d2cef642f5494d7d5bfb
BLAKE2b-256 e48000cda730d5f5f5e4ee1d2e6c38699b8426af3ec966639ac0b0ff28996291

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 125.0 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2511f334ca0d2b08cf43c9612a049e44e017c34909e540d5bf44985d545e7099
MD5 088a6f6430de8d978405fa216952fc9d
BLAKE2b-256 897985f9a1b2535d0994a55130e6ca16681299012b263fb29fab6291ebb02df4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 82.8 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f98f434e4e49b03c5c06515985066c73cb55c444644eee8ec95bed8c4671344e
MD5 291664dec0e3399c738c7785970f42b2
BLAKE2b-256 8c8f368cea333c64c70e323fbddac41d8ca0640741824991398f786c20ead3d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2fe57f386ba8742ffcd26f9da6d5c5dc2f4e174039c34529ad8bd2b2624a821e
MD5 1a0f968b651fc42d4f42929f5628bffc
BLAKE2b-256 b28cbea8f1175655019054b6a791e5ebe9c091564b35bc260a29fda429484b5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 246a0eceef9d62fbc3a162815ebf4f7cfb0dd3096cea8a47d3728888f45b6e3f
MD5 c6ef38e133526bf49446a3a604a29d2f
BLAKE2b-256 46fb67911536da922ab9220a3716332020dc655c8b8713d739e7e6d4cab3c1b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 127.2 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 438f73bdf8feec0e78637b19cdd6fec97923f25e11cc236e45c914125fd925d7
MD5 b1a81a452eebb2f537881dc9dedc52b0
BLAKE2b-256 ab73fdd1d4490aab529fcb9a86e43aa4afb55f5ced03dba72a64788b872403c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0c9cf52374bd80baa550e62c84cb991bd3be0ef1765ac16bab6b921db8283c8b
MD5 7465b834ac96474744a6a2ed0f5a1816
BLAKE2b-256 38dce6341453b67d1cfb40d498f5c02d0e16abe80e5c21863298a925e2d704a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8e13dc666e9debaf339b32d5bebfb40098841c54be07acaed04f3f5ad56b38f5
MD5 8f407468adb69ad646cb3f38c31bb98a
BLAKE2b-256 a0a72b64283d4efd8e2c46d0387718dac94e89b1df3001d850315a9bcc9c61c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bf63f8152a1745bd35833f8f4e3e96f57a70c4d315dd5dd2e399a1888200ac2b
MD5 5e5e6c748cd8d9fe0af1554b4d47930f
BLAKE2b-256 d419790a6b3aae7bf4feb1e0323694b55eedffbce47222cbc355fe93640ed750

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 768b6f165cdd47aae397d251ad610aeae916fc0bfa6dcd6708d76c16641eafae
MD5 28e0e8f0697e798ee2214ba5a44d0361
BLAKE2b-256 82f39753a3a47e5cb5a3a1b73441dacd2558053ae3878b900f0e78ce5115ac61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.7 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9bac5cd1e21c7198c9646a86bcd7601347069f0201bda7a08029d4143401b506
MD5 bb5b8999920bbe1279dab20e51e8e5b5
BLAKE2b-256 8fb32802d60c1548fcdbc31c60b88b9c1d576067e0b85d7afef0271ee1572778

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