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 your 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 5-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.14 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++17 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 aswell. A Fork of 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.3.0.tar.gz (15.5 kB view details)

Uploaded Source

Built Distributions

rapidfuzz-0.3.0-cp38-cp38-win_amd64.whl (78.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.3.0-cp38-cp38-win32.whl (67.1 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.3.0-cp38-cp38-manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.3.0-cp38-cp38-manylinux2010_i686.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.3.0-cp38-cp38-macosx_10_15_x86_64.whl (93.0 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

rapidfuzz-0.3.0-cp37-cp37m-win_amd64.whl (78.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.3.0-cp37-cp37m-win32.whl (67.9 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.3.0-cp37-cp37m-manylinux2010_x86_64.whl (1.4 MB view details)

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

rapidfuzz-0.3.0-cp37-cp37m-manylinux2010_i686.whl (1.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.3.0-cp37-cp37m-macosx_10_15_x86_64.whl (92.3 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

rapidfuzz-0.3.0-cp36-cp36m-win_amd64.whl (78.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.3.0-cp36-cp36m-win32.whl (67.8 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.3.0-cp36-cp36m-manylinux2010_x86_64.whl (1.4 MB view details)

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

rapidfuzz-0.3.0-cp36-cp36m-manylinux2010_i686.whl (1.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.3.0-cp36-cp36m-macosx_10_15_x86_64.whl (92.3 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

rapidfuzz-0.3.0-cp35-cp35m-win_amd64.whl (78.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.3.0-cp35-cp35m-win32.whl (67.9 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.3.0-cp35-cp35m-manylinux2010_x86_64.whl (1.4 MB view details)

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

rapidfuzz-0.3.0-cp35-cp35m-manylinux2010_i686.whl (1.0 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.3.0-cp35-cp35m-macosx_10_15_x86_64.whl (90.5 kB view details)

Uploaded CPython 3.5m macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0.tar.gz
  • Upload date:
  • Size: 15.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0.tar.gz
Algorithm Hash digest
SHA256 85322ca781785e4c40dd618cdf3ddc22b867e914f23704073ea4241c6714b406
MD5 5aa803dbcacfe07cc11592c1cd640faa
BLAKE2b-256 429bbc3937cbfa6b8e2c59c91f3431547660d2fe72d6062e53889bbeb023a54b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 78.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b152ec1a91e5fdb01232cf3d8b6ae750699fe1641f7265130a42c9719f24deb7
MD5 1442db4238e4ab1b7e0850f23bb65878
BLAKE2b-256 51b49c7f145974d944d28c8d8283dcde83c7b53e3009e1175ffdba6386d04a90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 67.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6dbd21aed1b4f8cf8cf9014936bdee024a2d64ad5390399fae6a6734f98131cd
MD5 66542edc42b28fa33638d749bba2ac84
BLAKE2b-256 ca0ddfe49919b60b2d86b14c7806458284882b8ec7f5a96183b4d4b7c5d0bccd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 625723de26293fca849afaab6713efee6877034bad77cd07105bdecf0370f3f6
MD5 653daec567aed4e1040284e37c35c089
BLAKE2b-256 f0ec1b67c51edc89c45326c18ed7393e87a0ec97689c78b0d6b686251ec9611f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 901d2ed4ebe2f185802e42b29f3cf6975d07887eca939648281313c37dd92c37
MD5 8ccb10d78bee8a999a35c95c044b941c
BLAKE2b-256 a78a2db495aa26d184815cb0b57f1f543a4e2d4ad4d5fff888d41841a6f88a19

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.3.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.3.0-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 93.0 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b76159b5ce80fd6dee247eb4bcb43fad9ae3e3742b6c0441c5fce601b1156c7d
MD5 1e0f442cf5eed9f39a242965a602d724
BLAKE2b-256 b9832b96d601a722dbd993bec7ae0911fc5be16568feb27cc89b524360af3c9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 78.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7e1ad910b4d7622aed8f91e5599a0c27fb9530400c9990fb597f4d9f3293bfed
MD5 0fdfa97574e357b6f44e6d3540a2d3c1
BLAKE2b-256 0da4442e654ae8785fa19d91c706acf7570c8940b4a40835008acba3f8a05e17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 67.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f80c401595afb56b456709bd02f384f1f8989d28c34f59172e8a1a8d77d4377d
MD5 5abf737c7b965f56e95d90a992126cb3
BLAKE2b-256 25065dfb235565123a7d108bfac1c14f26a217b55c54fddea7082930b6df4844

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 381f8907c2f00f347c229279209f12406bcebb23fe183bac73bbcb705e7194f3
MD5 0443af4f6fb295e37f098cd247646859
BLAKE2b-256 7eb36145a1c5880813c65a770161fa6652c4205d8d35b5fc7ae811b6d614836c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 56eec7b5641e27638a82a5ff79b83e4f10e4b22a79c139bde8390e0e16ac58e3
MD5 7cdd2447804dee658a78c2a4e1101940
BLAKE2b-256 bd463393a101497be8ffd4823f9a8891f411459459473b78893287e3516e3c69

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.3.0-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.3.0-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 92.3 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a842fcbbaf243d3bb376a2c7d1d3ff55009505a64ade35372a2096670147290c
MD5 b4e228b81f0336f9a2d8716362abeaf6
BLAKE2b-256 d4c56002b96cccd7df21749253474328fe22219034c313faf18216a732a91565

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 78.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 87743dc05c19459648b9646232e25c9c81db0c8eaabc0d919f4cfe0341a5bcda
MD5 e32fd24b717f327e0c539c6248ba3ab1
BLAKE2b-256 cdfe1447891f749d3091c1ac9ab9ea65973b2c09f5e698b1d8ee2ee29650f447

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 67.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 65d4678b150ec5bd2ee19eac91c4d69834f463142185f7076bbf18871ebfabd9
MD5 95584fb2228c47ee7c8f14bd6b03410b
BLAKE2b-256 1f185876588aa3e472177b0a3f961a02123450509cdd99b273670dc4680e3292

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0d49dafcc99dd239110a2925ddc7afa74030af8b2147812dfcf62363d097033d
MD5 603a10c910e0b23ce86bcd0b03d22890
BLAKE2b-256 d2f2e977fe21769d2badcd58162e1e3141f71396accc433bed589a55f56bf30e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5a32e9d2f906f751e2713cf2390cf90eb514c88fb34d37fa3c38aaeee8c84a6d
MD5 c032182c63309d599072de581f4912a7
BLAKE2b-256 5591a68fb1ffacf4e153e72a3ecd9c81e058f5ebef84b090a9c1bd89cc7da240

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.3.0-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.3.0-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 92.3 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bf28eaa358e09bed3e48f04c47dd71f132df4957eaafffab42de2eb38f214742
MD5 8df6c5246ba0270a16c63bd624662d87
BLAKE2b-256 9e67a17f4caf3bcf38b7b044d2f6348d7e30656dcf317a1a733170cc87546bed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 78.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 1274556e2737bd7f085a7b414dc6452222dd425bdebe0560660e15533fb3655a
MD5 ec656b4d7a9487c515d165fc632f1758
BLAKE2b-256 511b45a3d70e54a18f3aec019915e60bdf5332e3e28489cb85aed7bba0eb76bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 67.9 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 23f308d56c22132d5aae681bcae5c48a9157a90952048b4c3bdd73c0c1e0c99a
MD5 bc8660e9059a74d85c079b9acde0959e
BLAKE2b-256 dbc6ddbbef3e74c6fa2429704c51883f607eb22a3f748f99009d352fa21ebe59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 323e23d26c564d157b34b9089cd81f980ec9764ab6b6619bbbe4d031a06d1e41
MD5 cf132a1938ba9fe682b1009c159e4db7
BLAKE2b-256 35d33acd5e8ae8ef161064c065a1f52774e6c5c670983fedde7a0f972b62a049

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.3.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 71abe25e3e12f8013a8ecece500adab3af609ddade649e88daef467b227911ac
MD5 93b6e87a4fe140b5cf08a6ab7455d2e8
BLAKE2b-256 ca60083977f14dc63e72e5b5e14867ac2f92be01ea693c7b650df439df3f70db

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.3.0-cp35-cp35m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.3.0-cp35-cp35m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 90.5 kB
  • Tags: CPython 3.5m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.3.0-cp35-cp35m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eb50b4965ea06a9945ef243611c57c8e6b2fd119be035667059c28ec6c1a2f15
MD5 2dd5bef136b1583e276256f7fd0c95a9
BLAKE2b-256 1018563ca0df1d1d5af36af47dd00ff62c4aa1077848cfb9999265f6fb9a9d60

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