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 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 GPLv2 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

We currently have 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 we believe that everyone should be able to use it without being forced to adopt our license. Thats why the library is based on an older version of fuzzywuzzy that was MIT licensed as well. A Fork of this old version of fuzzywuzzy can be found here.

Project details


Release history Release notifications | RSS feed

This version

0.6.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.6.0.tar.gz (16.7 kB view details)

Uploaded Source

Built Distributions

rapidfuzz-0.6.0-cp38-cp38-win_amd64.whl (73.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.6.0-cp38-cp38-win32.whl (61.4 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.6.0-cp38-cp38-manylinux2010_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.6.0-cp38-cp38-manylinux2010_i686.whl (865.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.6.0-cp38-cp38-macosx_10_9_x86_64.whl (89.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.6.0-cp37-cp37m-win_amd64.whl (73.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.6.0-cp37-cp37m-win32.whl (61.4 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.6.0-cp37-cp37m-manylinux2010_x86_64.whl (1.1 MB view details)

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

rapidfuzz-0.6.0-cp37-cp37m-manylinux2010_i686.whl (868.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.6.0-cp37-cp37m-macosx_10_9_x86_64.whl (89.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.6.0-cp36-cp36m-win_amd64.whl (73.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.6.0-cp36-cp36m-win32.whl (61.4 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.6.0-cp36-cp36m-manylinux2010_x86_64.whl (1.1 MB view details)

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

rapidfuzz-0.6.0-cp36-cp36m-manylinux2010_i686.whl (866.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.6.0-cp36-cp36m-macosx_10_9_x86_64.whl (89.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.6.0-cp35-cp35m-win_amd64.whl (73.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.6.0-cp35-cp35m-win32.whl (61.4 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.6.0-cp35-cp35m-manylinux2010_x86_64.whl (1.1 MB view details)

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

rapidfuzz-0.6.0-cp35-cp35m-manylinux2010_i686.whl (865.2 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.6.0-cp35-cp35m-macosx_10_9_x86_64.whl (86.2 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.0.tar.gz
  • Upload date:
  • Size: 16.7 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.6.0.tar.gz
Algorithm Hash digest
SHA256 08175d1cd30ebd149906b094372ff0032367a7996a8e978c747d161839b92601
MD5 6b0498b856b65519e781f1fc67a5c08b
BLAKE2b-256 e68da61117913228b62bedc8abcd325c51da14ab924d461c6e13eae6303e2e30

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ef5cda6779f8f86fa31a9d3a0d33e3f59e9d1f4a161b4b679b259a45a3c9baae
MD5 63842859bbde654d689048aa89f2a2d0
BLAKE2b-256 adad67d3e51801e8fcad7b2e57ff092495dde89a40496ec2c33e7789cd237a71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 61.4 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.6.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7286e48eccd4daf58bd75c46478391f0e9cefcc7c7715619b2929c197e4fc7c8
MD5 f816560c58e68845e4fc047fbd16c514
BLAKE2b-256 c1183cb8c16891866ad0870a18f504eadadd2113e8682a5bb3aa6a1abb0a5ce4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.1 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.6.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5ce96a9960c8d4341d3665c8df40bb927b3b51e6985e8443a4b4fb6ec21c942f
MD5 316852c30e857763e246122dbdca545e
BLAKE2b-256 ee205b20bf48a74c3fffcc5a51d3bc409d3ac9dc89cc1140c83ae7770927d3ef

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0c89aaa38fcefd05032c1861b0f6b13bdebcac278eaac99ea267e02f9b3e48c8
MD5 fc367600c55117613d9638b2a7d37efb
BLAKE2b-256 227eb28bb9f9749895deedc4fd28042ea5848a64092c9f0df29891fe72498c99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 89.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.6.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5e9124deaca4ee34a2c279511fe3291a6122f8246f366232ded62fe3eb162ba
MD5 e4c14a57b5d44fc1dceccfb38eafb4e4
BLAKE2b-256 cdabe35f81af413f3ccb2b539bf354109ad3c79a18d26649e059e37aad325e59

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 712f1e77f2487233412cd8a91fec3050a3b7926eac34d7a0b3e2f0824da28e26
MD5 3b94a4bce2dfab43c3bcc778b146897e
BLAKE2b-256 06b4e6b06add31171874c36cfcdd9d15ce71455582999b4ec2060de9bb918497

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 61.4 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.6.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e80607036292a79da109e1450a708171897221ce6382b2ec04288b636a4e53c8
MD5 23795247c17bc67c0d3cfba4005c4603
BLAKE2b-256 330d96aefd9758f757cd9a36bcd67d748a570e16d82efa678e55f904715722e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.1 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.6.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bed2a78a8294c81a10fbfecec2f901f0b33c4cd220206ebdceaf496d8a223d2a
MD5 16e4c0559ab529957d147ba9e4084cce
BLAKE2b-256 798040cc1280432eaca668befda3c7acde0b40534eec5e4af945faf03fd14b76

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0052ebc53443cea190837452fef8a3c40ba736ffd943dd177de77987e0fbed0a
MD5 99ba71dbe38a1dbbe1a1e4e356e0506a
BLAKE2b-256 e6f2947501d6c52450f70dc94204f6d5fcde937ca5af3894fe05c1ed9d637604

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 89.2 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.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8f59163e02107733b20c8d34804b2b5f3296a274af833edf7f47d31611831e7
MD5 366be933261e38519f36901ba2c14119
BLAKE2b-256 77f7910e14855f5e88ead4eb361a575a03232bdc775b7747074a7103db0c4539

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 faeb076b7ef5380d88b37ce3ce42520f785dbba91e91b08e48e6d7f37b62d29d
MD5 4eb42ba0ca3b2afd474fa3f0f97c24c8
BLAKE2b-256 92383be7243d28284308601b1cecc857a7a4700dde5f5a97d5f424f4eed9e407

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 61.4 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.6.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a79bbf99bfa8329b87e6e873c7c175723ce85752131f5c44f706418eeefc202f
MD5 2f2fd0f240fe25b5bf5ca43c69ebbafb
BLAKE2b-256 08e134aadbe7b5c28d67504efbec186c5ae5f7961734980d1f658d9336c97d69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.1 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.6.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d851f437ad07933553e636e13c31b39a0a33a3f47864cb36d230f347cca97a11
MD5 38b6f6a8b9122615133d87c672ba298a
BLAKE2b-256 8a5569b1b92b7e38ee12bed3321772345d74261ca0fefd394e359a7bf7cfe765

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4cd16277a94d780f10e5c2961b87f41ff452fc3521933b06d186cd93c19712c6
MD5 c41ea337b2ebb24bf4cd4df6c395d7bc
BLAKE2b-256 f652e4fceddc67b5510d7d2b1200fefaa201f4c67e7046c45f067a33f1bb6da8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 89.2 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.6.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1fa59a617c14b81ce5fe121240ca0dcd26dc96bed94b32f489d32f46bcc9b87c
MD5 2890786cee1ab6c4dcf69ac8568d300f
BLAKE2b-256 e176e6665fba963c8e31e980d7fbf3a0eec5db7f50352c9ff7fb1f6e037941aa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5c5e9ac964ff366ad55a01c12d4e2fd42cea2e1d752749d138160aef0d3c2b91
MD5 81532f7c080950354c76fc955eb3237e
BLAKE2b-256 67855411afb76ab981d4a1a0ae91133160f2fa99c9939d86a29f3f4687e09a04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 61.4 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.6.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6d9cacdfb936708bd29eb85f12e8283353548654f4a7874118b09bcd289d505a
MD5 6fbaa196dd89118bbfec7ab07b1be6e4
BLAKE2b-256 e682e9f49881373ae55d8bb3f532f35c2001cc20405f98c5123d748d82428f22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.1 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.6.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a74c60187afb484ea32dd05e6d46e4d3bd5fdd8736c26679416a5d11706226ca
MD5 dc2180caf5627471b9e2830bd7857ac7
BLAKE2b-256 1973ceccb161e7d162da6eddc16cd8f0e8d851d6d7885e59244b4ccc5321cde1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b51a84df517072bfaa13953c5b1f2c3c1785415e94c000baacaf45440b6dcc7a
MD5 25d11ee379a78ffcb877965ba9bc38c3
BLAKE2b-256 de75cdab21275c2b5b4e0e082662ce693c0d70b8f38fd07d527e999d27145436

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 86.2 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.6.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be7b95e325609f9950d797e91aec059ed24e7898c16170044422905224f91994
MD5 90bed9583ef9165827726319181ece93
BLAKE2b-256 a51cbd21fd23632da677b213128e8ea5343fd8586d78159fdd19dcb109c2c213

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