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. These changes result in a 2-100x Speedup in String Matching. More details on benchmark results 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

This version

0.7.0

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

Uploaded Source

Built Distributions

rapidfuzz-0.7.0-pp36-pypy36_pp73-win32.whl (122.9 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.7.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (324.5 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (176.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.7.0-cp38-cp38-win_amd64.whl (122.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.7.0-cp38-cp38-win32.whl (103.0 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.7.0-cp38-cp38-manylinux2010_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.0-cp38-cp38-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.7.0-cp38-cp38-macosx_10_9_x86_64.whl (183.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.7.0-cp37-cp37m-win_amd64.whl (122.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.7.0-cp37-cp37m-win32.whl (103.0 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.7.0-cp37-cp37m-manylinux2010_x86_64.whl (2.6 MB view details)

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

rapidfuzz-0.7.0-cp37-cp37m-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.0-cp37-cp37m-macosx_10_9_x86_64.whl (183.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.7.0-cp36-cp36m-win_amd64.whl (122.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.7.0-cp36-cp36m-win32.whl (103.0 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.7.0-cp36-cp36m-manylinux2010_x86_64.whl (2.6 MB view details)

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

rapidfuzz-0.7.0-cp36-cp36m-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.0-cp36-cp36m-macosx_10_9_x86_64.whl (183.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.7.0-cp35-cp35m-win_amd64.whl (122.4 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.7.0-cp35-cp35m-win32.whl (103.0 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.7.0-cp35-cp35m-manylinux2010_x86_64.whl (2.6 MB view details)

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

rapidfuzz-0.7.0-cp35-cp35m-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.0-cp35-cp35m-macosx_10_9_x86_64.whl (180.8 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0.tar.gz
  • Upload date:
  • Size: 103.4 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0.tar.gz
Algorithm Hash digest
SHA256 aa1b8ae0327feaa8b6e4f9c5c29be1196778a79e7f76d99765c26e2a2b6156e5
MD5 9f91c2960217cabf82f5eb0ba62df339
BLAKE2b-256 cb4e6965caaff680e430d1f10f2579d5ea26c549081740a643e6f7e5345b79be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 122.9 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 a2dc698a2ea454fc0181850816938224e2dadb30d8c55bb4ec0df76b7914a667
MD5 3be6ccf354c7d69b385b04bf25313da0
BLAKE2b-256 197ec25a0d52c844c2196162828fdf8b857261872b3890ab84c4b39b9807e737

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 324.5 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 86788e55b80e7e173615792a5bd611267dcf28f1064c78060887ffc2afbc65e8
MD5 0668e983058c18b7940dce5a523bd021
BLAKE2b-256 b8f8bd4bf0068d5f339ee0849aafc62b09de3f523150d8a6bd1808f6fa98add5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 176.2 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6341bba041218c3876d4f575a29b31012941787413e220afcdc515c8ba1688ac
MD5 3921064603ff49c145e16591de29ae28
BLAKE2b-256 b972ae9b1a432cecb56249349eaeda4e4e5dfc46429a3fd2033e11379107d966

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 122.4 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ca742a90d25c1cc5ecd753148bf2ea587c228f7aacb2a71aa8787be0467d7c7a
MD5 67c377049c2a89094564edca53de2873
BLAKE2b-256 50999e39da9b459b66941464165ab3fa4277d3a81a5616ebf2227760bf55b686

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 103.0 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 500dd508614ba56958747a853c4cdee34c21f7610a777a575a5f99b233fa5436
MD5 de50958d5e03e53e1f3811d8c38e927d
BLAKE2b-256 d38b14beb4f144e4c5ab0272ee7ca92b42c90cb578be8ecb148ccb1c39a16b4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0a4ca4896e3854a14f53c84370ee945fd1ab87125dd21e337e26cb039d156c71
MD5 66b6d6b7f7988462325fdde8a1a65801
BLAKE2b-256 415f4298e8389397caf2c20e453ea307e02a12b47c5c74bdb09f46e0316ef592

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 21aa0d66f871447059e709c2e2abde8068a787af324a8a0ff1432283cac70281
MD5 b559314eb09088d75e672fe1ceb5b70d
BLAKE2b-256 9d6dd1ebe74f2f77d8c108ee61b3838abf125bee4319d6f98654ab2fcc25f331

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 183.2 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 81fcbd214281a6e3fe31ffed2c5e829ec88a922d01cee0acd84f8649d3e9ecc0
MD5 5d8eb8db0b811dd154ee6366562b2761
BLAKE2b-256 d94641f57541960bc7bcc0e4328ac6019f1aab5ef480a72116425b5043672d85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 122.4 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e89bffd3a1459a9cfe9a304635cdb0bbada1e3aa384fc99556d246893df934a5
MD5 a57e57b1b9cb0f41c8374246973a3561
BLAKE2b-256 0a39672f26da8c7f05bf82ee20c3e55c8ad89ff7357ff0c466c415b548989481

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 103.0 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 83c224f73a40ad868ef101b37d54c7dc648c9140a55a2f814919a871b8f26d10
MD5 2866a3d7db7dae47eeec45c2ed47ddfa
BLAKE2b-256 24611cf32aa7b23b63bf648bf5b61d8c79ae12a2472c93e38502caf988a21a9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9887427875513b5665a78a1e798b72b165eed096fb9484ee8f440ce10d8351c6
MD5 875ec7b96cffa53a3822656a7002600e
BLAKE2b-256 895090c688b9385ae407d53bb320b7148eb7039ec0cbb891b1207308736a1acd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 db34e7d2a020a78adecc313ef2f5091f458d98e71582ac9d2eabb73d4d5653e7
MD5 90ee679ceac6085319d6f3573040f1aa
BLAKE2b-256 8c60d8aec254c409d0d754f34559b80c2f0d9263004fb82b9d2b61e89c88e5ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 183.0 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b53ed90db0f21423863f8674fb6c8b873a3cc0095b17cf984f6ec86920a19143
MD5 32d85c90fc5c3285c64dcdedc5b0710d
BLAKE2b-256 4b93b2d2c77cd7ec7083974da1319539c99d72d03ea9d7764733b01b3cffd008

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 122.4 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 23a55c32e58aceb6225853f626d7a909297bb87e09a6b4b69e981b43dc57ce94
MD5 26811a69b7ed073013295da7f02799ee
BLAKE2b-256 412c458bf4adf85c24245306948a49fb73779ef382738adc0da7fd0b6a4f6a04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 103.0 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 57dc376ffd0c5b9ac3613cd4ac4f3226a85d7b6bd1af5810193cae353551abee
MD5 9034035395adf9a4356b9e93b5ece309
BLAKE2b-256 ce535ed565732e6add92db457d9a1661dc69c188bbf9c8da660107ad6a2a1521

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5558b837e577535da843a47790d347e2ca8d4a9e3c2aad7f0e526a56a2ee5ef5
MD5 b26b3eb1eaa7510f4336825a0df291c7
BLAKE2b-256 8300dc2a78e535e3373e7dfa867910fc662dbfcb72be3eed994be18623172f41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 71810d09d8e5910a10908fdb22abe625b84ebf056b6804113af21c8512a57ed3
MD5 5fc52721c31a23c193d0020d5b109392
BLAKE2b-256 5b01f4a01ef17d8638318c7a91c883874aa025e8bb24e8d09c40c5108d083dbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 183.0 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d350b1734a3252290bafc76671a89995f387a51c5064155f7a9ef5c37b2c3661
MD5 90a3ea4ecbdf0f5290ad3c536afd8ea8
BLAKE2b-256 fef9c958717e9c731853e5a705c1e43fe871d2bcb89814a96da5224a5d085e45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 122.4 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3a3bd384d8051124d527da804f7837c05e9db36761596deb632b5323a18a2a56
MD5 d944561887ab50607c5681941cb586ee
BLAKE2b-256 3e2606f93ef90cecd3858e1250ee0d993c2aed0f92998e3b684c8741ab4df375

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 103.0 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 211a72409c785fa77845ddf890cc3e4b247c2191596097a4451e85a0565c397c
MD5 74c0160f9fd957dbd4ea4093e0fc932a
BLAKE2b-256 d8fcb2f9ba27341d4f0074084d19c22381e8ec8ab1d01b065fbb4cfdad182813

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ab5d65486f7f6fc4bd7e7b0864a1c06a45f51c9f513a2525674fca4b616cca70
MD5 d2b230e419ed30505c6a4f41c941539b
BLAKE2b-256 4b0243b8ede5f7a315dea9daf277c4138b0b83287d5ade8be16812de880e7132

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5f7efb047ba0fe495ec4cec297b07a08697e82c4a08f3484901ee1ee4a5dd636
MD5 8caea61f54c52aa05d741ceae6f2dfcd
BLAKE2b-256 9f804165242cd2046ac1bfd0bc7006630ed62227aac51b9ac78680e49c79f237

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 180.8 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7eb73593d27f2b0ba1201e5f9045e3099866122184fab6175701b59dc4e57ce6
MD5 dc29f35ac163ce576f630c8b10777076
BLAKE2b-256 d30255a2e572216ec2cb2ad0f3e96c4e1b1981718fb8e83155fff3be2c423fcb

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