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

Uploaded Source

Built Distributions

rapidfuzz-0.9.1-pp36-pypy36_pp73-win32.whl (78.5 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.9.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (150.5 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.9.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (123.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.9.1-cp38-cp38-win_amd64.whl (126.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.9.1-cp38-cp38-win32.whl (83.0 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.9.1-cp38-cp38-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.9.1-cp38-cp38-manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.9.1-cp38-cp38-macosx_10_9_x86_64.whl (127.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.9.1-cp37-cp37m-win_amd64.whl (126.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.9.1-cp37-cp37m-win32.whl (83.0 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.9.1-cp37-cp37m-manylinux2010_x86_64.whl (2.0 MB view details)

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

rapidfuzz-0.9.1-cp37-cp37m-manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.9.1-cp37-cp37m-macosx_10_9_x86_64.whl (127.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.9.1-cp36-cp36m-win_amd64.whl (126.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.9.1-cp36-cp36m-win32.whl (83.0 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.9.1-cp36-cp36m-manylinux2010_x86_64.whl (2.0 MB view details)

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

rapidfuzz-0.9.1-cp36-cp36m-manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.9.1-cp36-cp36m-macosx_10_9_x86_64.whl (127.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.9.1-cp35-cp35m-win_amd64.whl (126.0 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.9.1-cp35-cp35m-win32.whl (83.0 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.9.1-cp35-cp35m-manylinux2010_x86_64.whl (2.0 MB view details)

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

rapidfuzz-0.9.1-cp35-cp35m-manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.9.1-cp35-cp35m-macosx_10_9_x86_64.whl (121.5 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1.tar.gz
  • Upload date:
  • Size: 70.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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.9.1.tar.gz
Algorithm Hash digest
SHA256 15058e1b291dd96c63969bf17843da55fd7caa75e195422db2365287e955e4dd
MD5 61e7de41975b30e0328e08c151925624
BLAKE2b-256 f6fc663e696d1f75816d244dd4a8e9f2351ddacd6c07e2c32c780f7f0c39b934

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 78.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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.9.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 6b28d96a64949d8bc7b5d5bdf8f5c978850e92b83afb789b2d42488c4a45d507
MD5 fede550b5e9ff5ff579889eebccb2a03
BLAKE2b-256 46908e840e62073d63159fb1aef7286238bbd0b06265b9f41d3bed4fc51d67c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 150.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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.9.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6a3da7189b02ecd9ebf775dd4ecb766f090dc202022867dce31844a2d9377f26
MD5 b83e24d5d1deff8bfea3b7504976b6dd
BLAKE2b-256 a1d84391519b25115eabbc0a4874d5fa7b0f097fdce143f49ac3062d44ff4014

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 123.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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.9.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a302a62a2b2cecd2b5fc6593ada00cb3d4667c32e9c9bdc0948b3bea2d617430
MD5 500cfc3e4ebf65c5eca16ea447712c0f
BLAKE2b-256 06153b54419d8142cb7123e6e85da3d90a6b5790fcda379b726da47f601f22e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 126.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.9.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1cdaa4452a52df106d08285964c78a3998394f2bc41afd88555747fcb46a5351
MD5 bf2180ae33bc8fcf3cb6cfccf8b23815
BLAKE2b-256 53313991ccfcc5ee3c7f73a5262152a3d102bd87b391a06412b01ef72a7c063a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 83.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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.9.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2e940fc25d3db3997e898c967aaab640271c71b109e758e8ab7fc7076f5f731e
MD5 0e71fbb91f2351777bbb0ee80c3c1def
BLAKE2b-256 8e388a15891685ecb13420c1a69835a2306220df9500d29fb2c02bfba6dae71b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.9.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fb20126c250dca59868a37728b38d5f7557985ef58634daff676ed4f5cae2eda
MD5 fef2edd996e3c7191600c5d214c8f4b2
BLAKE2b-256 5135d014e8c03f381aa60484a1bb218ccee2f18265b569d944c66fad916c35ad

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.9.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d82853c684fc6d858c31ad49da731e314a7bc51e350159d830658a4c8c2703c3
MD5 2184c98b97e3a5d298e8ad060252b31c
BLAKE2b-256 90a24d4d184c14ae5b10fc4042a4e101e924dd8cc33ffba7ef4518721e61648d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 127.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.9.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a843033f402776ddfd45c89976870ed18804d5e8fba4affa4bff42590738d1e9
MD5 c3b6a5e143f44d6b44f3089b1306dad2
BLAKE2b-256 04e8ade1420872cdd9a8e389e89c1d29a420a74c591c7d2e0f52014d08aae926

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 126.0 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.9.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 73c3ffaa92a3a2c4baed7848b66b7ff91485a15ff009aaf56bf94df06eca71a1
MD5 a80e365465fe02384b8ba017fc5ee571
BLAKE2b-256 c1eec8874db835d30135a6876a654b56eceddde2d33fe1e004e9e6ce621a4599

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.9.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c8be289357b6afd3dfb9f40c4bad66b88f6efb62996bc407620337e0ba8a1efc
MD5 c28f74e1d4f3421a8398c21038d4efd5
BLAKE2b-256 b17695fc889a7ac5d515186e079028dfc6b13ea31bfe4b7bc953b7c54b94c8bc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.9.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0cff941855875c93acabee8b59331d153b200f6d21d57340d3d5d7ab5798e1bc
MD5 b110a3e3d0539935c921d6a6991274a4
BLAKE2b-256 d8378f55ac17fdcf39436bd2436594ce87d4ea439b4018824ecef0aa6739f557

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.9.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bf76d08d9913bd43e3f77652eaca411d8b44a7efffefa6fd2b6565bedc6ddc7d
MD5 c3677c589018061defd608774b60369c
BLAKE2b-256 c41c17fb57113b4074a627ad7c1757cc1ae76e83811c1c35ed991602e24a39d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 127.9 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.9.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9234a7916e94a7d496c70ef82f9ccbb5468d8f181f3cb1941b170bb69c635837
MD5 4ada129408db491aa6e79eea1738bce3
BLAKE2b-256 78e6abbf70d2204bf824cf995d0ce397082a35a12b8ead3970ad60d2fb17775c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 126.0 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.9.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5668ff58fc59cc412d16ec04ce586e77801236ab6c3d6f2fe73261b031682d83
MD5 0603f8d76073258c3652cca4977183bc
BLAKE2b-256 3563652ed81e9b7b675284a3926f929a648806315a28b29aed7b1aaeed3d1fdb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.9.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f95cc38d8a636330c180ba028d1d1dac254475973f68514cc870c8b0ee27a5c2
MD5 90492ecae21f665342c1a7caa2604ab0
BLAKE2b-256 912a81a5a1808a0051a7b89993c06bef23fc75bc0514ae08bdc0aaa6f2d04989

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.9.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9e9f840d60824d2bd16703babf05851b928698af7e2587777aba3dbd38cc860a
MD5 69b0d590f2d521d39f230693fbe3acb2
BLAKE2b-256 c43a972b40abcd929315a928c50e00e20f924d48eada8bf252d9ac57911e16ba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.9.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cbb0fec868acf46b6f689736bd244c2bd5125a8a49658db87aa8ca482283f4a9
MD5 0a67171c76914bf8eb6bfbdc9794730a
BLAKE2b-256 de8184ae572c0bc596b7ced8ce792799012f87149e775a08809620d8d8f52527

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 127.9 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.9.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95ffae9952d1b53163d60fcff1f234ff974272ac4ddaf97c2ab3afe7344aa841
MD5 fda78611439966551db62c9068383b09
BLAKE2b-256 33e1cbcadce6d797ad4360ec35100dd736b68e223a0f425c43e0893e3b38b648

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 126.0 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.9.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ff2d3cb7e7f297ec2e78965d371c68378da23c4b2150b3ff19040c554feacc5a
MD5 c84fe609cab7c3a5dbc4476ec539968e
BLAKE2b-256 ab4ac273121e6344667b5c0173c1c6c63351e790f436980df0687eb88ad2842c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.9.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 7ac9f06cf5509926122d61fbf63c2ff8b2d43f8cc663521e0f99b49bdfaba61f
MD5 dc6c172b1ad5ddf207cd107db4b2f2e7
BLAKE2b-256 2c5d70d50c87f0a82834906cfddb86351bde647c8989b10fea908da43d33b7a0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.9.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ea5a2ae1ee4ccd974a08966360e746fc77fc3258530973bec253132b27ecf520
MD5 5cdc63e47192a503ef44ace7e29ad97c
BLAKE2b-256 82fd3bc3b90dcaba28422cf5d29b96f6e7ccaae09f0e03b2cb8d553edbc93b93

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.9.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5ea0b2aa8b776316f28a7e4351fcf866413053154ba7adcde9d96577170f9800
MD5 e8c6dd1f7aa9e2faece03fe3539407c7
BLAKE2b-256 b0c32acaba050902f078351684980da187079f746717e240b0ccfb859e83bb16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.9.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 121.5 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.9.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7fd21e5bbf9e76f62be99a85c1ab80c35bd521b381ad0876ab98c394c6d73313
MD5 34f7b0a5aa6fe1a881e9b63b09e1bc70
BLAKE2b-256 43f4c980d20e6792c4eb9eaaf5afbcaf75fa9452de504483295b9f229050f24c

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