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

Uploaded Source

Built Distributions

rapidfuzz-0.7.6-pp36-pypy36_pp73-win32.whl (49.2 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.7.6-pp36-pypy36_pp73-manylinux2010_x86_64.whl (86.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.6-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (51.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.7.6-cp38-cp38-win_amd64.whl (58.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.7.6-cp38-cp38-win32.whl (49.6 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.7.6-cp38-cp38-manylinux2010_x86_64.whl (689.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.6-cp38-cp38-manylinux2010_i686.whl (526.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.7.6-cp38-cp38-macosx_10_9_x86_64.whl (55.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.7.6-cp37-cp37m-win_amd64.whl (58.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.7.6-cp37-cp37m-win32.whl (49.6 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.7.6-cp37-cp37m-manylinux2010_x86_64.whl (692.9 kB view details)

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

rapidfuzz-0.7.6-cp37-cp37m-manylinux2010_i686.whl (529.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.6-cp37-cp37m-macosx_10_9_x86_64.whl (55.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.7.6-cp36-cp36m-win_amd64.whl (58.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.7.6-cp36-cp36m-win32.whl (49.6 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.7.6-cp36-cp36m-manylinux2010_x86_64.whl (689.8 kB view details)

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

rapidfuzz-0.7.6-cp36-cp36m-manylinux2010_i686.whl (526.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.6-cp36-cp36m-macosx_10_9_x86_64.whl (55.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.7.6-cp35-cp35m-win_amd64.whl (58.0 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.7.6-cp35-cp35m-win32.whl (49.6 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.7.6-cp35-cp35m-manylinux2010_x86_64.whl (688.9 kB view details)

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

rapidfuzz-0.7.6-cp35-cp35m-manylinux2010_i686.whl (525.9 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.6-cp35-cp35m-macosx_10_9_x86_64.whl (53.3 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6.tar.gz
  • Upload date:
  • Size: 227.5 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.6.tar.gz
Algorithm Hash digest
SHA256 9216185a3e928ee12fc87f913fb3fee510ed7192239a4e9cf81d0f69186b6977
MD5 1c3ab3f38c3d40f5beedbf3a1368705b
BLAKE2b-256 44d2bbb4a2699fcde5f26c7b1706a61fdac13573e85eed9abf9726309cf4afc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 49.2 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.6-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 f5d966fe35be2015778481a1f9a64d6ef9ac8274503dce5e2559329d105c49df
MD5 dba78579a023ae052e8b691a51f43ea1
BLAKE2b-256 f93e6978b05650ff00d6d3318f4eeacee22183e8bdbcb50b63d9b1b1c34c4df0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 86.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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.6-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0249c78c594e7d663d9d3c6fa214025e930ebbcbad0e27d6114080288bb08ada
MD5 b646142524db618e26c9f1e9335bca30
BLAKE2b-256 cf840057b98cb474de296214517903e70bed24506d036f0496d1b146cd2d6d99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 51.6 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.6-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 159755faa477e75bdc7b8ff6f80629d503960af27089b62459d5e2bb67532dcc
MD5 b658b0d44cbe5ce79e373ab7a13e4b2a
BLAKE2b-256 b6a85765b6b81c5a6b67043a141070204d24019498726cb5939157b58f6c6c00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 58.0 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.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7e684d9f7bdb467429c1e862a3232ddde0f68a5e63506593b0293cdfaddbd472
MD5 6e974d1e74fa6c11ee5966ec7e1da14e
BLAKE2b-256 b568ce6eec2854da5cdf453195e66a62f5073dc512793f00fd36c462748a2ce2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 49.6 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.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1e7471a3eef06b4af237244484e25545506865d1d089cbf55c3253df264f1e9c
MD5 8473267762e3cae6659222aeb5356f9e
BLAKE2b-256 efb3b3d33a5b6c4f618410d193f75326eeb7108186c7e3b6a91aa19b753f781e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 689.4 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.6-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d46fe2459a3b8c492feb4222f781665489d361299c8ae2386b4590a8db30ac86
MD5 b675a50aa3532192899cc6592744e600
BLAKE2b-256 cc184fe6e51ea1f4aec94e5200f41374583288e276009f4001ee9a9403b8ed42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 526.3 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.6-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 83efa80315b7ec7670edc3421080109de73c79714e7a18f365ef4d3db0f304a4
MD5 e6d7fae97a3c41ba592af478b4ab88f1
BLAKE2b-256 6e82d610377655f42113653b6e950992a6276415ff9c8fc9f0a8605c41c2cae6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.0 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.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83463144375b50b6480e8329d53187e91500452fa97e72b56c21895c51207fb9
MD5 23aeda531bd18c9dcc938a8e66804d16
BLAKE2b-256 495d1c91811029b22d69c07e559d7e8c12e17c74e82102c2f1fe547cd8f7522f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 799135f1a88b3da4c7a0c4372197416d90dcf60d376c3e87623a936b1c0d42b0
MD5 ad7cbea510596a29edd7e4fd7b97bf15
BLAKE2b-256 ed704b4d002aef4abbff887e6aa3ccad3f675877d48e67c5d1ca903160b511db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 49.6 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.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f3a401ba53f8eec09ddf8203faa87d8bb2618e5d6f71aaaefff5f5d0591ffa63
MD5 481c04d63062ef99adb02a083475b076
BLAKE2b-256 6878aff1f5555bb849a43a13c94c8b6af685f4a69f9c58c9461b273e35d32fdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 692.9 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.6-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3b8076d99e004b5a0758a5487076407d6dc3f3312f43ee3a596f08911a8cae22
MD5 0c4ae55cb7194075b4682e908b973a50
BLAKE2b-256 25c31dcaa5a08aba5665c5ec252cd1d14fe64d5f1ed432e13f0892ec453499c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 529.6 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.6-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 39ea7cebcb39315a3e7ada8c1d12408fc1174715f3ba4d1c4375f96520af6b04
MD5 519295c1d3ad5c0fbd1939b4e610237b
BLAKE2b-256 39ccde7779d1f13be39b0d4c9ba9d5c935536cc6c7ac777f0d03ec9f3ee13b58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.0 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.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6237326f2d9c5e0e2315f456a10e99c595f66948c775523dc7558a7a8acfe66d
MD5 bd6ae8f1d4f587fdb58b078a3d5143fd
BLAKE2b-256 fa3a3d84915c792cfb6f7dec785d78fcf12a0bee93c2e98135a8a7bec6251b9d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f1c82fbe641a79ca62c2242c1662b8efdab71087c496061c11a161b1bff0a75f
MD5 7fbbfbeae0b67866ae6369cb27c6953f
BLAKE2b-256 c142dce88bc2a8e96542a3e5d0c0d574baf6b4f249329cac2c5a6b2241964da2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 49.6 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.6-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ce66631497ffa98629aa86f4b7dc0906b4389e466d4b289708afb7d42de267b3
MD5 23b94854dd98640f6f1377b2274c4b9a
BLAKE2b-256 2bc903539d8b20c8f83e522c64ab49f60940594e4c74d3a37a22f046cfa85f68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 689.8 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.6-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 161e1a9c42c6ac7a606d8567e48de35898dc1335f2885cba0473817193b40f68
MD5 0b97f4eb70f195f65d29a86be8287924
BLAKE2b-256 c24e66d1ad1ad9f7f1e82c68632a6683c2408cc0e134cebf1a67572370379557

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 526.8 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.6-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 389ca294bd7a14e838af464ef73d5a3a372139c8cfd6eff3583fc1751f8e88e7
MD5 8129753111acec188027ad1a93e5bfec
BLAKE2b-256 94f21ea5fe6ad30c66d84e00ec5189a8251582aa40b3786446bbade993490e17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.0 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.6-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bc639741be920e0803d935a04aa804f7f49e279baae6da87de54c0810478d4c
MD5 f71d493ae2cc2b08149bf768d8257d88
BLAKE2b-256 7edd5f450f8005ab5da7dc8626dd0549d9e76647168ecf826f2cd87585564f9b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.6-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c4bac646e4c63a68e4281458bb28991c82dd2a959069ba894b876b6777930631
MD5 ef2598d2dd64e2bd827732555379187d
BLAKE2b-256 b86372a9eda9c41d59729c9f93dd41e8f67496165ed6472932f3524e2a23f121

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 49.6 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.6-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c18cc6764d5471526cd445c4b56214f04b1d95e5c461ecdf5f01bcc7a770c738
MD5 da74c505aa86d52501d61d5fbf953f05
BLAKE2b-256 3d7460167193e931e6f6479a31ae0a5540fcda444542c2292a042c54ed6b6e10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 688.9 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.6-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4db3aba7bddfd0aa9a9b13e503407889a5294514c78114101f9a8c82d8d49fb8
MD5 19548c5a073e1d7b02786daecb6b0d4c
BLAKE2b-256 cdca871ba5002a2ba4a1401bf5d8843453be3842c1353128837946c706822e26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 525.9 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.6-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8c497d059dc1b6d310780a98bbcbd99584237bd402a8292bbf40f7f21c914c50
MD5 b36af2459da2042956a201be971452ab
BLAKE2b-256 1cd55f36534f33a564ea684ad358b7023d37868ca235ec447e90b64a71e95845

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.6-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 53.3 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.6-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49457900c817236071e845a8b7b872a2c443a9c9fbd7ca1290509f69211d8df2
MD5 023181b858b6d7448c93e7b39aa554ee
BLAKE2b-256 ec9abc14f1c224c75a1da636cba2142722e47c44cc346b9ddb98587a545312df

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