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

Uploaded Source

Built Distributions

rapidfuzz-0.7.11-pp36-pypy36_pp73-win32.whl (93.4 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.7.11-pp36-pypy36_pp73-manylinux2010_x86_64.whl (87.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.11-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (51.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.7.11-cp38-cp38-win_amd64.whl (59.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.7.11-cp38-cp38-win32.whl (50.3 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.7.11-cp38-cp38-manylinux2010_x86_64.whl (696.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.11-cp38-cp38-manylinux2010_i686.whl (687.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.7.11-cp38-cp38-macosx_10_9_x86_64.whl (54.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.7.11-cp37-cp37m-win_amd64.whl (59.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.7.11-cp37-cp37m-win32.whl (50.3 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.7.11-cp37-cp37m-manylinux2010_x86_64.whl (699.3 kB view details)

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

rapidfuzz-0.7.11-cp37-cp37m-manylinux2010_i686.whl (690.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.11-cp37-cp37m-macosx_10_9_x86_64.whl (54.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.7.11-cp36-cp36m-win_amd64.whl (59.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.7.11-cp36-cp36m-win32.whl (50.3 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.7.11-cp36-cp36m-manylinux2010_x86_64.whl (696.4 kB view details)

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

rapidfuzz-0.7.11-cp36-cp36m-manylinux2010_i686.whl (688.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.11-cp36-cp36m-macosx_10_9_x86_64.whl (54.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.7.11-cp35-cp35m-win_amd64.whl (59.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.7.11-cp35-cp35m-win32.whl (50.3 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.7.11-cp35-cp35m-manylinux2010_x86_64.whl (695.6 kB view details)

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

rapidfuzz-0.7.11-cp35-cp35m-manylinux2010_i686.whl (687.2 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.11-cp35-cp35m-macosx_10_9_x86_64.whl (53.1 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11.tar.gz
  • Upload date:
  • Size: 229.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11.tar.gz
Algorithm Hash digest
SHA256 dcf6b2a507f822ee1a54ae7b2ef2c4c7ee149d1c87c663c24628ce90b5c19e6f
MD5 b7d9150d902eff3d853b1f133e4e8a4a
BLAKE2b-256 724f654daf8b14d164aba98dbe6c03a6cbb1281ae4d1cc8b7d92cde0cbb89aab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 93.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 9ab6cb3d9e56f60d840aac8e8189add3f67033a8da4979aad28ba99f5302f34f
MD5 334c09440a773097f26ca9b1dd509195
BLAKE2b-256 85b5d7cdb7bc321f2a02bd20b46a98a0bd2893416b503f0393e28ea63dca12a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 87.8 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c1f0321f7778082c913740427588fb2fb91d3da56aa2c99309701e05dc6a614f
MD5 fa25aa3ad8d978697664bf1fce8112a5
BLAKE2b-256 b574240f9abcad082e4879c9833ee3631ce8b122f50178f1822328c0cbf233e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 51.6 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4da28bf6a088044c2316d06ccb8a663aa88ac1c574c149f4db4a7f9ad3dbdb8
MD5 b70bea095ff1b1f3dd101ebe5a297ecf
BLAKE2b-256 7acee154c3bc4d03c68a99e37b5315574a07a161fdb8eae10578d41cf040ef26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 59.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2153f6b5088d5522509e8f409f712b8be4238f804a49b25e81b4d30969ad4a91
MD5 255fa723b97ba16353a712750a2d7b9e
BLAKE2b-256 93e901286b0255eb694836a6d04dcf9e4ec0e11fdf2e34d592222fb3f1c172f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp38-cp38-win32.whl
  • Upload date:
  • Size: 50.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 30cafd9a1b7f5d68c643262398661bb90805b4c43dea02ae397141ad556c4dde
MD5 fedf4a7f9ba932a2a793feeffa2fb6f9
BLAKE2b-256 dabfb3eab26cbfb89c47d4f81aee9518b43c2f7dc4c9b92610b5bb95d122a098

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 696.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c5fd36af9694d388fd81e10d5f53d6971ed5a3254e4b1b6967d74fa8ceb14008
MD5 903394583ed36782dc02c5ef6ffa130f
BLAKE2b-256 4775e4af486a0da09e3e4550cdd90c0dfc8a87213d423dcab04531bb959f11a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 687.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b5961a7b87be74dd4873abddee43e5fde004d0c75aa0fbb5ed3122d1e6938dc8
MD5 aad307502bfde75c29349061c2718d28
BLAKE2b-256 f851bc84306ed515ed265a4f1e2c64a22aa5deff7a2c60d9b09e96296fb3613f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 54.6 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 29896884bcb18a61ca4404bc89da24c2692267ebe4c9d8c03a0044f1e27523d3
MD5 69abb27586e95eb66f3c1d55c045fd52
BLAKE2b-256 431e696be4b6f5bbc0869a70e4260dc15a5e5c9984ad07ed4af306e935205b36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 59.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f9281450b6b71c139f61de069b7a1c53e10103ce63c10eaeeca547f72fc8af26
MD5 a4a1d5d48da198abb4da730316d01c28
BLAKE2b-256 22fda03639e7e34c40d53fafb6265e5cbdf6c3a59953aa955116370aa7729b9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 50.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f7bbda48b138c915b735869cf8a2e717b18076dd67f05a7754a771158e1be879
MD5 146dc86827d13c3a14163f7ef349ce9e
BLAKE2b-256 4938fa666c45e6f520e71c794f0c8b418694b765aa8f78b9c86873a15140774b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 699.3 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7adbbd6d3119df2f536883c94c184224cebcfc1a34603000c6dae50a4d72e3dd
MD5 36ff779c9a5f8a966aecd39fe64d4b3b
BLAKE2b-256 7cadc4c5b4e894415b8823fffe039328aaa4c895353bc35dd689f8a40c5017fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 690.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2be73cf1706cba81dca35ca1cf9bb1631a6cc3adce5697613f89f1b3234e4369
MD5 42fabc30e147c4226f38f5126fe619d4
BLAKE2b-256 3b8e837c19cac0e30680e43b4d41356caf18a565832d4d460adfd7a6fd93118a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 54.6 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 727c4abe36cb11fbc10a23bfea26dd27fea001a5c5039f2bf1b91d3eadccb353
MD5 367dcf309f404297cdc393ea07fe7546
BLAKE2b-256 25bf72d50b964c09c83fc4248071c43fadb902fe71ca209ea70c2cbebf7b159d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 59.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 30b1992cad7f413ec76657c7529a3d3e2519e4a76891babf5592869e1e0f0f28
MD5 ed54d4ff902d5560580e26ff2ef6933f
BLAKE2b-256 40b01b8980dffda91adad1ac44e75a9417b2a49a601524a29961f1a601ddd6de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 50.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 fc9751f9467c9166ab42d5c4923bad38f26cf41ed1eb3269969a68f09639ec17
MD5 6266ffadd72e6c3c4ac339209a205638
BLAKE2b-256 fe49b174457c29892f22bcb892e392cdbf8bd7e861d8ec3af61009058c4898ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 696.4 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8bd18d59ce9065463be74818307761192708a3dac317c0a564ea9e8bd0fc79d0
MD5 035434541b4f09d6e7daa529c1620e14
BLAKE2b-256 d25e8fc6e0175f3777c59fd5287e0897fe807ebccbe29236335f92237759a895

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 688.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2229dd1a64ab92aa87714baf89695cff761535d83ce6c4bc22db3d1a63d7e206
MD5 60d7d9ecbefc478705b8e28195e971fd
BLAKE2b-256 c159afa98ed16a2dd4b1076e8d2133cc60cb1b4ac50fdc1b478a0f83b7d54be2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 54.6 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 477106533a8801f73ad15bdf176292a9c19811050b4a30538954b22195477a67
MD5 354cb63f6f93470560cdcbd0f86a40d6
BLAKE2b-256 344666b974a1b9754ea990ebeacba920f15c5b18b938291cc3f0e883475be285

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 59.1 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2228ad16fc8cb0c69d633ea134f554fe852aecd93ab7c945ab150f7f811f5394
MD5 16e1a016aa6630cf950f2a38395b56ce
BLAKE2b-256 780b73159ee2507368743b6a30e5ea8950eaead68ba51b1f116dfa12013037fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 50.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b9306394581e417baeeacecab46b090b4662d56a95c729ab98ad01a1096cf4b4
MD5 1965109e072b167754883a24b4bb0de6
BLAKE2b-256 17a3ba261c35a52c00a842ede5d517ef2fa1d9cf2952ef3382698290826bce78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 695.6 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e71b8b26143482faced22ebb4c57b9b9948c762b40426e165cc1837d88fc179e
MD5 b95ca0323e444c8de98c53f658d20be3
BLAKE2b-256 0c389d3426f8d01887fb63ce404a8fc595c5e316b2b7d762ea3cd20d154af17b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 687.2 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 38dad702555513fdfd6e8971b91b66f9b1bb8d797e66c5c62143ed6921d2215a
MD5 ac87bf21f5a216471a38267dbab366e7
BLAKE2b-256 344cea2e2dc1646ae6711f1c7e0d2880a688930367503247ddbe415df9599fd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.11-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 53.1 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.11-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c6acebe9bbbdc948499dcc1e93ed0c1d5543964dd1c3f8a7cd1c7566d6a4810
MD5 37bda1fd98b069a3cd0dc535c92f636b
BLAKE2b-256 139579ba3ba899ff0db84a6d2ece178f163121bb55de11bf6cf272dd63954784

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