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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.10-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (52.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.10-cp38-cp38-manylinux2010_i686.whl (530.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.7.10-cp38-cp38-macosx_10_9_x86_64.whl (55.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

rapidfuzz-0.7.10-cp37-cp37m-manylinux2010_i686.whl (534.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.10-cp37-cp37m-macosx_10_9_x86_64.whl (55.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.7.10-cp36-cp36m-manylinux2010_x86_64.whl (696.3 kB view details)

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

rapidfuzz-0.7.10-cp36-cp36m-manylinux2010_i686.whl (531.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.10-cp36-cp36m-macosx_10_9_x86_64.whl (55.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

rapidfuzz-0.7.10-cp35-cp35m-manylinux2010_i686.whl (530.3 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.10-cp35-cp35m-macosx_10_9_x86_64.whl (54.1 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10.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.10.tar.gz
Algorithm Hash digest
SHA256 a29731a8c6fab93698ef660e35db220a45ef37258854118efbd05ace5c22314a
MD5 2921b84ef0f32e6186b9a9ea7165678e
BLAKE2b-256 9f1ab125b08cc01641d669bdd008f919d5c5beaba1e537a30c88e860b53a0d60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-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.10-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 29c640ef8292c85f8d737e7cd44a52c3ba3177c58f7694391dfeb67e3a06221c
MD5 cc8293e7661fe16af79c4eb3d77af587
BLAKE2b-256 a7d6fd0d007ace782d92f011a0dc9e3d914453d0c09b3aa0f68b818e77c190a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-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.10-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2ffe50d1d747ff109ad8f646bbf149eefea4c4cb2a13efcd006f8a9ab7ab4e4e
MD5 49048c56472943c9301286fca84aceb6
BLAKE2b-256 5a01e4c626607f39001747c3f84433db71956681aa4892490e424506722ad4c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.7 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.10-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64a91c289cd20469aa16218fd9cf0ed8bf6e807f763ee244c25c997500d7e9d9
MD5 c4ccc84b116ce59b3b42ffd0a179cc6b
BLAKE2b-256 e70ee463163a4131d4b435500ed6387a70eadaecd0ff9ce94b251489188aaa8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-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.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 90310d21bd526980508020fbf88f34259c20b147a04cd9b48cbce1d0a266e4a9
MD5 7f879cdbf9bd50058746d3df74e57a53
BLAKE2b-256 def5bc296a02275ffb9764c0eddab47b8a2937d93cb17c3671f33617bc698219

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-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.10-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a39f578e6ff98c1598dfc4451985f6737f889476f7f2adba9d184db2803b12ef
MD5 245f440484adc70ed7a72c14d58ec04b
BLAKE2b-256 f8371fe9067d2cb518c9a7154c7dc973dbf36fa05d63657344cba9cbc8558ec9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-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.10-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5cdad3eb3b100fd3d57c380ac61f1167e74ff3e0f6d950394a055ac49ad3a926
MD5 954b51e32cf9a31b3a80c742a1b57702
BLAKE2b-256 45ceaf59bb756b6887ca0a94984bfeccd29a7c79a6d8a16220adb2c9c3838eb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 530.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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.10-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 78fc5124e4d8392833ca22985e322a945bf7b6a38a49c2e66af88c3a11263bca
MD5 763b66146635772bb52d5935bedfb699
BLAKE2b-256 b509eb20bce485196949619cd81db9de7c08509b145016898ee51f171da09ad0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.8 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.10-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 924f4cfb9a5aa2762c02db4e9752b37acc2300d3f44bfb81b86f3fa0565f4bfa
MD5 b10b9472172a232d678cc079c88a14fc
BLAKE2b-256 ac36e3076750f57ad55f76966d5ff7da1ea019542eb4d117c9de929334321587

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-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.10-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 06c059ca18bd6ba872b21a30e7c28ab8688a266f5cd5a892d92d02a22c0fc084
MD5 fff6897193ffdc2ad749975c699640ce
BLAKE2b-256 b974633219e5f39cea54135962f4a1836e45ced1ec39d9481e37355235a9feb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-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.10-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 389c60d9ad554d172649c9f368e5e65aa8e8af52ec469686b09b6f043c9c6a01
MD5 937db0c90ab9417b0371e3bbb032d9e1
BLAKE2b-256 9f93a8ae125ea3686b6aff4654cf81ee4097b3269c201538e062f5cd393d7f6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-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.10-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8de75752382eced6611a0d09b237cfc9fc80db013a5c0e34793f3b6feb39b6c7
MD5 796889500ae2b2aa16c3befa02a10a7a
BLAKE2b-256 9f5dfe011a12b73c83c20ea0021820a3b84a4a4f45e8a5192d2b39498696dddc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 534.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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.10-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 abf085cd4b835eb6b069bf6968ef5cbd8f1ce2eb77a513e41860f7cef1ca4a9b
MD5 8ab91a91656b3ad880b44ff10ca3d18c
BLAKE2b-256 ec6b56713b75e10561e2734e55113a56705b2bbb0806ec42e5070ce1aac1e271

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.8 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.10-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4243d52f380a21821f8f9ca3e02654015c9f6a710d292cade119ff9b99df2a54
MD5 9d08ea1691da9d558da6bf12bfeb5e1f
BLAKE2b-256 61cf861ba8ae0f5e0c1c97d7c614eb7d805c64f47e43af630e0ce4b20636a787

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-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.10-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b03e4e75c2a189d0d85327b88a0703ac855ea20c3c82be7aa00e75b4572810fb
MD5 cbd2a435bfdb08c23ddc2fecc5d8cfec
BLAKE2b-256 5e26893b0a08d3e17896ecd88d869fd470efae76a492d3e9a647fecd98b5bb27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-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.10-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2e72f2915781c1951378bb6cb7d0117f797eff01296c7b3d8873bee863dfc94e
MD5 99d3618a8c5c733196c5d78be264eb66
BLAKE2b-256 378139080e75604e972ef596193feb9e66c7d8810f708ca86fccd7abbf8e1852

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 696.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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.10-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ad8067be4734dacd6f39fc33ef990a579afcd33f35027941ff625b0b8ae1df99
MD5 6d2cc09b8b52f1998d8eb0358914a7a3
BLAKE2b-256 c6be94e24d236a6a71c0c0505050921fa3ace3c5881b07a0011079507ea8928b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 531.3 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.10-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c1b9a8f8f1ad237da59864945132ba2371faf7e98b01d9976f4996e8144d3457
MD5 b8b8fb98802638e87d8b0febd19955d1
BLAKE2b-256 68dbd6d85a072f134f964a487c2d404f5e7cf51b0f128995610a472e0eb7594f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.8 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.10-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 125e13fa8d318f7bccc11510951001baadd6d026fcf64fdc126773712da45ee4
MD5 d6d09b1db09f9619eb36fd5c96404a33
BLAKE2b-256 b67ce9eb9aac0a842f2e0bf6a67f8ae9184e32b32eaffafabcf95dbf7dce14fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-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.10-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 a273033b5ff98ee8689e8e7735f28a16c82a067d326d5e4a310e09423e510556
MD5 b5da68e53e7d98c7f7e8f0ac1905882b
BLAKE2b-256 388eaeed96b7e8d10eacecf6390385325801b623a714dfac52dece251544dbc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-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.10-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 3121c63334a24483ae61ac5a772304de5916c1b6ce6bd40f2dd6ff1bf15cfd98
MD5 fb6c18fe86e7d0fdc960f9a10a38ecac
BLAKE2b-256 775476fe852a85243ceaa3f579bc5f7abbdbb2bdd404487f770fa01b0e8fc59c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-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.10-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 382c6a9949ac0982d7306be1de576313a38194130429afc6a49278a3a3ffab56
MD5 79980a575623606a3cf8f0348d24283d
BLAKE2b-256 57d18486041e6d6d9cabb22bed1c72d6d4389aa2e17a3f327e8cdeb5c8f2515b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 530.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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.7.10-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6f6b49d7762c58d6a56498173aa6b1d83afd8e93084c5665eea27821a00e284b
MD5 e1eb435286e24ba589e01cb92336a820
BLAKE2b-256 cf467edc41ac5fe6a8d94967af17c8e7518526d19aa6651049975458779f31ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.10-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 54.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.10-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fca8c84f3a210c03c8495b342da26e05c8a120a820e1eb5c56304a76c050394a
MD5 554b7587106be57e4b4650a6583a9802
BLAKE2b-256 eae9c94b9856369036d4142f0a06f7ebb46ec59a64750151a6ffcc6490c51eba

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