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
Gitter chat Documentation 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.11.2.tar.gz (56.8 kB view details)

Uploaded Source

Built Distributions

rapidfuzz-0.11.2-pp36-pypy36_pp73-win32.whl (83.9 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.11.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl (159.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.11.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (132.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.11.2-pp27-pypy_73-manylinux2010_x86_64.whl (117.9 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.11.2-pp27-pypy_73-macosx_10_9_x86_64.whl (88.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.11.2-cp39-cp39-win_amd64.whl (125.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-0.11.2-cp39-cp39-win32.whl (82.9 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-0.11.2-cp39-cp39-manylinux2010_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.11.2-cp39-cp39-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.11.2-cp39-cp39-macosx_10_9_x86_64.whl (136.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-0.11.2-cp38-cp38-win_amd64.whl (125.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.11.2-cp38-cp38-win32.whl (82.9 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.11.2-cp38-cp38-manylinux2010_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.11.2-cp38-cp38-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.11.2-cp38-cp38-macosx_10_9_x86_64.whl (136.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.11.2-cp37-cp37m-win_amd64.whl (125.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.11.2-cp37-cp37m-win32.whl (82.9 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.11.2-cp37-cp37m-manylinux2010_x86_64.whl (2.2 MB view details)

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

rapidfuzz-0.11.2-cp37-cp37m-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.2-cp37-cp37m-macosx_10_9_x86_64.whl (136.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.11.2-cp36-cp36m-win_amd64.whl (125.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.11.2-cp36-cp36m-win32.whl (82.9 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.11.2-cp36-cp36m-manylinux2010_x86_64.whl (2.2 MB view details)

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

rapidfuzz-0.11.2-cp36-cp36m-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.2-cp36-cp36m-macosx_10_9_x86_64.whl (136.1 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.11.2-cp35-cp35m-win_amd64.whl (125.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.11.2-cp35-cp35m-win32.whl (82.9 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.11.2-cp35-cp35m-manylinux2010_x86_64.whl (2.2 MB view details)

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

rapidfuzz-0.11.2-cp35-cp35m-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.2-cp35-cp35m-macosx_10_9_x86_64.whl (127.2 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

rapidfuzz-0.11.2-cp27-cp27mu-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

rapidfuzz-0.11.2-cp27-cp27mu-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-0.11.2-cp27-cp27m-manylinux2010_x86_64.whl (1.5 MB view details)

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

rapidfuzz-0.11.2-cp27-cp27m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.2-cp27-cp27m-macosx_10_9_x86_64.whl (96.8 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2.tar.gz
  • Upload date:
  • Size: 56.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2.tar.gz
Algorithm Hash digest
SHA256 9ec4193284738da603b158f8d86ada11c12205dbfede0dc8f246a4138e611839
MD5 16d5746379899d31a50c3e142e94284a
BLAKE2b-256 281589ccee55c9f760688cdaa1dfd8a7a791e5a132ed390adb0c8a62df24fb3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 83.9 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 f4ebefa70f47b6d6c741859ba5ff93852af36d6c98bd4193391bb8c0f999f236
MD5 288dbb8c8ab641871c42c63ff2ad2997
BLAKE2b-256 03a5b2fb4fbaddf254d6988b10c0578ff05133a944b694a32c1b45348d61d64b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 159.4 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eb19d231adb617cd7488d44319c3ccecc38aa56d50719544a07a2e142115e477
MD5 e924fb0b866b137c143b0c4cf5b5555f
BLAKE2b-256 a9b5380c6a58a0910acf934f71de4b66969bb360fec54afaa6854af65818a40e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 132.3 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb833582c6573918649bd4a97e9da79c6e968175a76e4e2213145f83205b7889
MD5 fca45658f0d088349a5d74a3bf7362ec
BLAKE2b-256 94b8db3e17aa7a45311b88fb4126213fc22dfcd2532ffe27f455d10c29bf357b

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.11.2-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.11.2-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 117.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3d513bd9e8268d1a7746757c0472e7ae39ddb5aef6ee41cd035b0bc6350e2cae
MD5 4251bebec309d6df9c1221b43820fd01
BLAKE2b-256 a6afc53ce5c1abaf1164639f5e4e8d4f4f752aeea6aafa37aeca111766305110

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.11.2-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.11.2-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 88.8 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df10c4467be264edf06c6a903de479b1571ae61ca5ce41d19a698e14cb2ffebf
MD5 32eec168d6729b99fcb4de5f7bb1fecb
BLAKE2b-256 d7b2dea239da1d699c572cddc5cebee0b8b3ac6bae55b56c249f457a420a3a6e

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.11.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-0.11.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 125.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 725ee915b7dd628de60da9935f274d7307c458786312b9bf5460dd26be586d68
MD5 0de91886440ceabaea8af8cee85c1399
BLAKE2b-256 7c58b57ef61e99d03bdceebc79a6808bef5b65e41a947b9177b435be1901896c

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.11.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: rapidfuzz-0.11.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 82.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 88136bbc201236e18d8ceb03f5bfbddbe23312ab2fd25c034ac4716c0185b106
MD5 5c69a27b16fb5d9ef6e01a3550cfc763
BLAKE2b-256 9ce91f34c999b5d22a701486aa4c9ad7e287fcb7170b4c47f0c3b7e8e38e6e2b

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.11.2-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.11.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b1ba69ef7e9d4aa045ffb529f7023f3af78b2686b9d922b815b0278df626e6bf
MD5 48620b65da3af0bd0a5518ebc5426afa
BLAKE2b-256 c4e08bf11862f77397582e587f747682b4cd9aca93da4744d05c37cc1bb44323

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.11.2-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: rapidfuzz-0.11.2-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0a0454b2a9f16a5070b6266b4f38bf72681f833dcd047e0ee0c1807215215b71
MD5 d05c6b2e590a35ae50c5016b58ddbf13
BLAKE2b-256 e8c459ce53236690ca9a595a60482a4ab647de7247b1aa647584c56ec5cd8c42

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.11.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.11.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 136.0 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc1481fed56345310da47953e19d4df0471deb3ec77e22f1d9d5a606c1790ca1
MD5 bcc9215296f66454aba71c72b75e33b4
BLAKE2b-256 42afee2b2d065a73df2a567002ba67ae4d38dc57b1b74b2a27d9a03ebaff947e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 125.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 88bfc5f98263108ee41d866179f7c52f20b4dc0b75c4351ae5f27bb6491f9d91
MD5 703337bf66432dc4b2ef6286878739b2
BLAKE2b-256 6526ee6a66ccf1d4bbc418206e73f141cdc5c1298b7811def1fbc298868142a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 82.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5dbfb001a13fcd7b066064372dafab4db11ea862823a057ef00d80124b99ace5
MD5 ab884f7ddff45b0e540e0d2def376b89
BLAKE2b-256 2fd12bcee5f9e5fc53f5bf7e8f984a4eb6ed27fc9c5af8206da899b8d6783522

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a5e530dde556b36a3a26e00e37738c06228c5387658cb3b04e487451bc853759
MD5 a854c79d4945965fb6a6b9123c4d0cb9
BLAKE2b-256 5cad575640b8a58eed78eccb3c0387579c01f9cf93a9415d76776793bcb8f690

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6c477dfaf5d858c306519efdb4b185468db723b71906adafe2ecc43cde83b385
MD5 4a18a83dd5cbecd8900ac602328f4255
BLAKE2b-256 4d289a6ca324bd7c9bbbf72684b587491f79dd1222931f1ddc4598605044f7cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 136.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7a632a1cece511bb5a379b699c1c913260736f7538f76a80ab845c08c1b3cc2
MD5 dacf90dd4a6611a738734f8c8c1e85d2
BLAKE2b-256 7b788db9f89ffe050079604c23425a168d6ab7ecdd183981653e1cb42c9264e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 125.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c0ba73ec25c326a5a2b53d25fa5e17c1abcb8126141e76f2c63f22cdbb7c3188
MD5 f9649561ecc575a32f98a607fafacce6
BLAKE2b-256 3edaa603610de8d5affba09899a5102e24f07ddfe702e974e547eafe9cc6f6cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 82.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 022dfa08aa677a8df05656b436551d607146c7db06e7f04c58b451108c12a399
MD5 7641aeec31e7216113f114a4aa4be176
BLAKE2b-256 66f138a02cc45fe3753a669deb2879a525ea7262e4e1b78ce92bf8f4213b347a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 316023cc5c90712ca5316b30bfa41136e0e2b4296859fa43b76cd4005c2614bd
MD5 230125d56b6fb26ee3c4fc807c1dcc57
BLAKE2b-256 045bd6e8ec07cac2ca2011b15eb6e18fedad2d0d395bcc695e8b054d3e6ef68b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b81dcbfef8995d873211ff9eee614a58c634f744283c080490dea2c6b52eaf12
MD5 4c7f85826a42f24756de43231eea1577
BLAKE2b-256 0b7bfe4b082710a040f003cb3b16eedaff64a3a6d9f03c614c5327b639275284

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 136.1 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af7acfb3a90fffd3c1641cb9057656b5434015ef587a9cacf367338f482d176e
MD5 146a78def9134819e6e07352929af7d6
BLAKE2b-256 2e466a0a123e5ac03765e96518257cca92f64c2e9bbc95f39f8ee3408d0e31c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 125.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b1cbd7eb519215a61b699303be72b4b95ca2032c1e9ae0dd54e2efe8df3a615b
MD5 47d4fc1bb826b514dc31ad21e2977dc2
BLAKE2b-256 095124ba26a3b953377c9f504f0f8a0862a43422ff3c13bed9c9a2b520ac5023

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 82.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 57ec33efde488175e83c21f37cda2b4ead57110d34dbf53e90a5bf47e41f75b1
MD5 ae89cfd465e4ea6e40bc9fb3d7e6638b
BLAKE2b-256 5e6d97f14570fade640bade30508e65d40266d884f98880a5df18ba029d07cba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 41416d786fa4a56710a35c911fa26ebff393bffd7dc6bb5e40994d1ca2fcfe32
MD5 a2992c5ab0bc71f18a9c5742aad6336c
BLAKE2b-256 7831bc0554acebad06beb401c6f9e569997e99fb0948ab99322209bb92904c16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2aca1bc9aafb5ab48f6121fab66a2c3f8ecd7a787564091ae5707c4b30eb6709
MD5 28b37cd599c7f313b2e4ff0040539579
BLAKE2b-256 c4c7dfce33e34f7230cde0ebd32f1b033d5a45cda2421e0e6df1eb3524845fad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 136.1 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e0d2f9b585a40fa9b1023d7a8014b66e860499baf4a9abb4d2d549804aeb1cc
MD5 c4d116771e9392a854a890d6c40f7eac
BLAKE2b-256 9edf5185c39464137638a6230c0f2fe282112747ac9009d688cd96cfdb52a01f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 125.1 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ec29b80dc5ce3967f6f90d5a14726d434e31e6b2efd4dd098d8bf7782fbe547e
MD5 51743b9075c70fae44dac8c2317a589e
BLAKE2b-256 c04e87c76503b583c3de51db60fe91936439102cfd545439e3abb46e3fddd306

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 82.9 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 7166383dcc2dd8c27be3735a9a7ce5b35cc30897b92dbeff88f2df87cd87b394
MD5 4a5974960f8c070079c83de067576476
BLAKE2b-256 a45ca2cd6c089aa66bceb9fad892ae332b36b3f4cf320c6799debbeb5b4478f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 38dd0541a650b7f6639e37d0faf7448b441ae50aa54cc37c8c53eabe4b64c3d3
MD5 f0201b236fc871c257d2118bdd003532
BLAKE2b-256 06c2922729d5097eed6a714644421b099d1b435f8d1b2619d2d781c98bf33ecb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1eedc21e90e72c34a4fcb11447e7481a97a28c6ecf3e4da69b7fb9924b1073be
MD5 361a9c80a76c64f468e0728fa61384ab
BLAKE2b-256 2b4be7a2996f2da21c20fadfb0f95fbe3e4144479aa1ae4d52de176ad03219f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.2-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 127.2 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd894c19882be33be878cbdfd3ce3062fc1de336b2b8cc16e8080007c3baa09c
MD5 ba3273e9ade37f7aa95fa41105e63992
BLAKE2b-256 e8c1b330c869daa45d8595d9073f45d00b230a7c9a44001c294764f62a13f2ee

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.11.2-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.11.2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6aa78bb60b2ea14d199ca8483613bfda3f8b2610ea07b4ba5dd34248f4f549ef
MD5 42e145685bbd146af7f19297dfbe79af
BLAKE2b-256 efbb76a9946af4def937f34a77daca40fc01cce473a545565153c6a82f2dc229

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.11.2-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: rapidfuzz-0.11.2-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c415513a139e15b69c3c3381078647a080ca8baf9dc3e65fdc8bd38c87292ff2
MD5 a5193e593c8c70a3c77d1d90b2631f61
BLAKE2b-256 05623996af3dbb02390e2313b002976d55a9376e7d5ddaa9b72d118221a549ed

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.11.2-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.11.2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b66e0241c2b2a147c49b2a75331dc6aa4e3dee8098d3583dee7e1a26c26f98b1
MD5 a73d25a7e258949baca8c483977f3ee1
BLAKE2b-256 14beb4e1a9b89f9021b057813fc5ff90b4509ccac19caf82766e08da4fed1945

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.11.2-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: rapidfuzz-0.11.2-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d41362a12d5d007e388550d76e1b588ec053488f778f4c5ad2b86159cd853253
MD5 0e2c0eaefcc8df04d9c3c4b7bf9744e0
BLAKE2b-256 2251e4aa3faacd04b87f71f2603a760b808312889d0974b45ab72cccd00fa00e

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.11.2-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.11.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.8 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92e6cd6fbf7bfb3f01d2e3962d7d6338cb986a69c201e689cc490fdcf139da9a
MD5 6bc3b9b88752487eb5836a76de69f091
BLAKE2b-256 4d0ccc9dde4aa3f64676d83e03f2de40a9062e1bf82495ba3d6cda3983fdecd0

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