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

Uploaded Source

Built Distributions

rapidfuzz-0.7.4-pp36-pypy36_pp73-win32.whl (49.5 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.7.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl (87.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (51.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.7.4-cp38-cp38-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.7.4-cp38-cp38-win32.whl (49.9 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.7.4-cp38-cp38-manylinux2010_x86_64.whl (690.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.4-cp38-cp38-manylinux2010_i686.whl (527.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.7.4-cp38-cp38-macosx_10_9_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.7.4-cp37-cp37m-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.7.4-cp37-cp37m-win32.whl (49.9 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.7.4-cp37-cp37m-manylinux2010_x86_64.whl (694.5 kB view details)

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

rapidfuzz-0.7.4-cp37-cp37m-manylinux2010_i686.whl (531.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.4-cp37-cp37m-macosx_10_9_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.7.4-cp36-cp36m-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.7.4-cp36-cp36m-win32.whl (49.9 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.7.4-cp36-cp36m-manylinux2010_x86_64.whl (691.3 kB view details)

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

rapidfuzz-0.7.4-cp36-cp36m-manylinux2010_i686.whl (528.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.4-cp36-cp36m-macosx_10_9_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.7.4-cp35-cp35m-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.7.4-cp35-cp35m-win32.whl (49.9 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.7.4-cp35-cp35m-manylinux2010_x86_64.whl (690.6 kB view details)

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

rapidfuzz-0.7.4-cp35-cp35m-manylinux2010_i686.whl (527.3 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.4-cp35-cp35m-macosx_10_9_x86_64.whl (53.4 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4.tar.gz
  • Upload date:
  • Size: 10.0 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.4.tar.gz
Algorithm Hash digest
SHA256 419085e725a7391600bea30c25b97136831ef2e7bd4f7272a0804af5f82c2449
MD5 b1c512b53693e3358cc442f4f98a55b3
BLAKE2b-256 22c1a624f5856646c17013598827b5288e8b03c6166942b194204d833f949407

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 49.5 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.4-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 f0ef6e9450b3faedc6b143a12a47cdd603a2d5d931bd0a5aa59dfb7a919b90bd
MD5 97a23b07dbaaebb5d68aca887a45f01d
BLAKE2b-256 4c668a9105c1e06583a7aacb7b0a2cf00522664894685c365685e3a52626ed81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 87.3 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.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9391e3cf72e60c199ac1ff5c348fc153de09f095b25aec53002ae071b2a7f8fc
MD5 9d5fd33a8a4562ac9fc52679fd58e5ff
BLAKE2b-256 704a6f39cb820e2f5a284c42ec3328d25ad9af46ddbc04ca37d3b8c275eaa9ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 51.8 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.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aaef2f3a04594a32dfc96dc40c138029ecbc0cc3c94209622640ee4c84818774
MD5 5d28e7fe3d1c34d0c611a10cea7c50e4
BLAKE2b-256 e41a2c0754e9b6877a4aac165e7755568e36db9daecb115101d0f342cc2e9e33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 58.2 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.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5558fe4a00708cb730b5524cb9138e10c285d4fdd63140ca2b3c96d742752fc9
MD5 7c8697ddcd89bc2ca60ef4d5abeb8eb3
BLAKE2b-256 37e9551ba3effc32e6eb64e85eac78d0f69140208d9312ba2c5cc794821eb1e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 49.9 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.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 549b3e449ebd77e628f4963867a5865d2d61b2418549118d835c8bffaee95337
MD5 5784c924b5b802581031cf4628a5c5c9
BLAKE2b-256 f7c93280e4aeb94d5629b8da13c1615254bf021c43aca33c214605b86404cd19

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.4-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 76b05bf4054023a12e14c5741b033299e969489428909bcc57e79cafa2eb62a6
MD5 d6179833e8af963ff406f5e0a6344157
BLAKE2b-256 b600f8259157dfb7fa2785b50637f81a2806d1bf85729675edef773a5810caac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 527.8 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.7.4-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 062d1612bdaf66740b6d0de7febeaab42bf9466749ac0d4ea1696a12bacbc7e0
MD5 898ef1c542c700bd482c05cb0ec467a5
BLAKE2b-256 fe3fe5fbc46764fb074fc6ed8fdb85ac13e31eba0111ee1c705807524f2a5cb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.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.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ecd0c5f327270641be3bed97349a83dbfab38c2fe073a1eadcf676d310e88dc3
MD5 6245fa5e56972572faa87fc8ba0c6708
BLAKE2b-256 59a8171bb17d8b72571c8c369bd58e8142184b055c9b34d138a1616bd2943020

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 58.2 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.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 61388d0228566fc9320caad8901785b6a7cc72b3d7ec34c4922b2c2887dfdd56
MD5 5188591eff9e072818bd918b8f6b85b1
BLAKE2b-256 7a445b817f00a732babe2c1f5744e3f1fba3e8340a020f1d6e753d499bd450d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 49.9 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.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 69d2df1ba8faff540d1a01d0f2694298fda18bf7d0772ce574ec5507086ba613
MD5 0c5605a42844c6edc06d70aa42cdb9a4
BLAKE2b-256 28a93345878cd533749db6e016aebadacf6a37ba733744ce7b3b44f7421ee642

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.4-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a92fc7b24d7bdac920b2855dfdb666a7776022268f3fbe398e84397a966c9f0b
MD5 b5423ace738115f0ea7518bc2c0c0777
BLAKE2b-256 db8b68f9a222f8fe28adf9fcad2e7a01d9c4daa0f7c3b3d811f68f70c43fa3f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 531.1 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.7.4-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dc58045d95884e21212714c6df6d47134f4c513a87fc32c15c4b394b4076ecfd
MD5 19fa5aeee84d1a8cc6f8fe200928580b
BLAKE2b-256 b76d3ef350431c4cc6a7165894b8e13377fec0d84a38e124e9824bb1333b9fc9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.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.7.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 014bc0c83b95b210b9f21e168ec958983d8a2544d4617c3444826adf04db7508
MD5 a18c5b2f8ba2613a5a095efacff6ddb2
BLAKE2b-256 41affba1657f4f428e8d8cb1cec677f1f38eadcca868b9f2eeee2961fd12fe65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 58.2 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.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6cd7832dec9ff80ee3a8668513e455ec71c181e01f51a88357daa0f080ed673b
MD5 c34566d1e6b176fb6330d676ef9376ad
BLAKE2b-256 b57e81aba970c642766c3bc774cf49065a0bc4b4db9f618a39bbd5e8675edf81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 49.9 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.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6e581eec3da3118eaddb6e07b892cd8e3b8cf1e0ba92d2a129e3bea6019f2a51
MD5 c798c0f215a7016dcb00df7235d66e7f
BLAKE2b-256 11820f3983eb99b2c63fbd72b910f4c84d2189842a5180cf4f2fa1316945de91

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.4-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5e3199afc9760a5661a6de801ba890f45874b8f170bd00f079e507fc97a3efdf
MD5 eb706f963e8b1149e76c82b0bd38d9f1
BLAKE2b-256 8180240c32a937eae52b26c42509ce39205d6840cb99ec6bbe6921a9eb122d7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 528.2 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.7.4-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1f7467155b0f2445fde4e066cd7ed6442282c4f7430a0c6e4bd3257bfcd06228
MD5 979a547d3685a75eda9d5720a55f78d4
BLAKE2b-256 048905f0ba092c4249757c84aea9d69b05bf4abdc03bea96099066a0f12ba06d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.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.7.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65e78a77e40cd2d957c78259019baa9ff78cfa39998a00b80064db54139dcc89
MD5 b19c1f4ee9eb2b3f36ddb2f368717408
BLAKE2b-256 2ec688a61376cc75aea4fc81fef8a91564574570ab365bf9e53f519125ab2628

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 58.2 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.4-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 27380fbe534607ed658bdaff839da568aabb4ba7356b3ba56cbaa45c91173c5d
MD5 35668ff3d3839f6ebdfb4458bb180ee9
BLAKE2b-256 b60a7f8c7863e877abab66315081da8a081e1a7d752beebafa41e00e594d60fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 49.9 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.4-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b574cebbe53032ac2540eb921aa57d384839b2a25068d5620c7d87d21360ed3d
MD5 1d513f6aaace2b7134a4a298a67718d3
BLAKE2b-256 d5235b34b9c2bb408f8a022ab088d2e3fffcc04ac5c465ffce86b34aa5fdce8e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.4-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aaedbfe11aa4555e3fb981102c0aac01eb400b9c917f39ec0a33b3dcfcfb5db6
MD5 048145a0e303c0d621a3cb47385d0339
BLAKE2b-256 c4c6d93a72048d48a0b52a5f1181f4c7babb928d990dfea99bb391f65041a64c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 527.3 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.7.4-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6a464cdad59586b3917a1333deccb2d49c98dd4989ce8733fd8d5aa3e1cfd729
MD5 425daedc9bc45af74fde46d30cbc4ffb
BLAKE2b-256 d2ba55d00d0734fbd51083042e44270b5ee7032df6bcfaf77b58f5bae33e539c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.4-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 53.4 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.4-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8cd9039d017122f01f111d867724b82e8123277541b39bc33c94ecfa3461af5
MD5 91d0330f6919f9393c59d0c27efa6a4d
BLAKE2b-256 2c6b5b7a04793f2b292257deb4af5bac32fffe39646d9a7f619b1d7a4acb6971

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