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

Uploaded Source

Built Distributions

rapidfuzz-0.11.3-pp36-pypy36_pp73-win32.whl (83.8 kB view details)

Uploaded PyPy Windows x86

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.11.3-cp39-cp39-macosx_10_9_x86_64.whl (136.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.11.3-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.3-cp37-cp37m-win_amd64.whl (125.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.3-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.3-cp36-cp36m-win_amd64.whl (125.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.3-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.3-cp35-cp35m-win_amd64.whl (125.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.3-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.3-cp27-cp27mu-manylinux2010_x86_64.whl (1.5 MB view details)

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.3-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.3.tar.gz.

File metadata

  • Download URL: rapidfuzz-0.11.3.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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3.tar.gz
Algorithm Hash digest
SHA256 2e83368f45e6ce699f31c058e3f5b9048f7cc58dc5c9f00429d0e2df0c9ff049
MD5 70746e78f16e4d55695c9d0230569550
BLAKE2b-256 fba726572d32d94c7a7de482dbd295e538d88b093de19cf4ada093ca72cebf4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 83.8 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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 273dc5353d43787f3c10c8ab1dfb33b2953c6a1dc5da0eb0071ed37d7a0b1c29
MD5 a8629a21547d16bd2f25bfe781c75660
BLAKE2b-256 174dfa6f95e6a77290c966429ecbe50e53a228f38bf6cf0b3b8c80bdc50b2307

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 583c6017ac542dc5d7180968ebd6d9aa2f592060b3d25d2ef67339414c594a33
MD5 2af8a6cb8aebbff5cedbd0206f328d4a
BLAKE2b-256 d49f2558734244a1a31fe56c74ae320ace5c21495a8e879ecc0ab61bcd45dc66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 baf9f3313bfbae6e3641e7d0c422a388c23a98bbe4552aadb168b0f1ed544400
MD5 69d03023c59908c5e82453a235c2d50d
BLAKE2b-256 d74093cdcef21d18044f87c21e6f3e0e4ec612f116ba19e2e3f682dc7c8e7b9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 518016bb3037e6849621296602f5ba87051a11920b719f3663dd04ca3145f8cc
MD5 8b93cc9a5d7d01cb73ee2a778ffa33d2
BLAKE2b-256 670c83520683c96e91f54a39013d1472e994ff638505a62684c2aec8479fe42e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b0ea67f728b8f792badbae290011bba0cfabf625ca4958cba87d1ee1104135e
MD5 7b8136e21835b765f36295c3d8c605e4
BLAKE2b-256 b8867291fd4f7cf27d811b5ee5558f73a7e7c45746218c0be0303d0149c5ce3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e68b7356c71c226233884292062f9ce80daa7c6996c2949f41ae671fe9913d71
MD5 4daffe921d9eda92ff64256363480266
BLAKE2b-256 57a0fbdced7dc505682d38edc04171087fad088e8ab097eca8edd4ae8d1d2a46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bd8c1708e3ab8f8891fb09c566f9d426617d7d2898c64ee3ad71fcefdd608ca4
MD5 6b0ad14d3672bd8075893b8f6de1efa2
BLAKE2b-256 c6d309fcecb3c0be0a9a636b6cd8fbe6a82407bb05539a7bf485905b46a98744

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 33afda5eae142486181e6cc91e787fa24a76c9e4d4d70818a124648b77ea53bc
MD5 221f5e86e54b1289295ffaed4f6a9aad
BLAKE2b-256 ce8cb8d4c7d128126b5c9c06961cba955d9af2d65db337cbf68ebe2371c30bac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2ca9c9422eb74b291cf0a58bab9eb434819de1cea60512d93b45ea28aa4b5d37
MD5 f710711627741e54cca98f17b233353a
BLAKE2b-256 0f2dd1c1b9099d93d41f4a1e83e8d59679062965620959d03a301a7daa2a70d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 136.1 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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 959bc55280b7f0f5240c6468d9a127b719f344ee65efdbbb274fd601ec58123e
MD5 5b5f40af2b4e20efe1786914a6ca95e6
BLAKE2b-256 a8de4744e2e8196a624a53e9f14e8e7c72791f04d7f2c2e8669895490836174c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 58210ab1c6e57b0a6339b1d23f140cd253bf6f871ad4dc616c964a712fd2fd9a
MD5 5d59a59442c82f648d604ea04ac7a0dd
BLAKE2b-256 e459548aa4fb5193ec33a07927d222b0911c03a6fab81afd873f1150098bc4b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6cd37ec7b014ad03320e52f3971041d1b63d4b3852931ffa0e8a47a529e8534c
MD5 7b1c32c36d9fd0fc4e8d7f349658ad5f
BLAKE2b-256 b32bb90eb7c89e5bbf535c0f72b72211c1ee06727120674dd94fe3d38602416d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3f3a130b986dc6f7d8e2ae1b0cf74b5e4d83a04571e62f172f925d34011bbcb2
MD5 e411c1c067ee5fe3e4fdd9531b3cc924
BLAKE2b-256 b5e68b5c6f0324758984aad7d91f13c405141225fa256669dd1b18680e65bf4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4cf45aca03c39a519278908a756f0e63f12031b13294919ef10a9f343a2aa490
MD5 658c664fa017184c10def6fd9586b483
BLAKE2b-256 884b18b94ae04d73a7f64dde6077f8dcb52bd40f029e09d847bf45950ae04a1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 569d648a871c61b31af3a6e258533ea34d96ef2363b07f826d3d3b6937dfc7fc
MD5 feebe28ccaa178c48457f78ada1602c1
BLAKE2b-256 a403e6562b8493716808c9f57da6fe7c853faebcf30974bd03e5c0477536e3de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e003a557749acca4430292a2f5794853a7644c7525d37ed9c8efccb8fa4db449
MD5 07e48fa37bf1909f57c5d50e3ed50d70
BLAKE2b-256 6a49fa62f16f7dd2aec85c2f72616daec5fdac3b78b1e6b6c08375929ee4a3a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 22909c84b0827aea2bce202521c2c13bef91644da3747c1ccf51e25a1c4b60f1
MD5 a0e983d0b587db849013b52594268173
BLAKE2b-256 1594a5fcabd7ba7dec5a28b91252ded09641f44bb3021d96a6f177200b56bd1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 58e964deac8395b9a17a562ba6c7fa148c9f940de7e84a2a663006c91beeb7a0
MD5 6412a07dce73f1606bd091b92002d641
BLAKE2b-256 1498b97be8e5e3b9a9cb97b21caa8d803a1aacf7f3fe9368691ccaf7b465425c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 457222e7307b5f91d23e91d14ca7dcaa579d5486cdc76dfe678837c39366c6df
MD5 04c2f83737385928cd6d90fa7223d2f1
BLAKE2b-256 687c88565d8fa4430addb2902fdb7478aef56171fb633458caf4bba000fdf4e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a0786091935a975601c557eb804d6caaced1dacb728019b93da5fe84b03fab3
MD5 10e4a6dc59841d15a47c489f851b86ca
BLAKE2b-256 ffb02f578959b4f3c5b15850366fb1b342204f73d0771138851f9dffdc3afb3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fdbdd824df6a6b085179ab57744fd2b1cde235f653d3ae647ce2bddde735672e
MD5 dcb3f0fb1272fbee3900c2cd5348472c
BLAKE2b-256 dab8ae577519aef1f963c8e0659e29d5e4a5465439ed135d23b684272f0dfe80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d23f44188701d9e1daecbe72aea2307a9ef10ec07b9fcba57576565325eed065
MD5 14b094c83c4d0e544ef7bf35b16cba5a
BLAKE2b-256 68a993e04955a1ac75b329827e045321431d82f4724738710ca220ab1b11d1f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 66a3f760c86dad12c1f4a710fd72288f215e3679a265039d49cdf2c6f5e405be
MD5 da52de2906e71d041c06b5155af18b38
BLAKE2b-256 b84e757fb98476e5f46bedcfee04155578da91413fe36217b3a3d33d7f937dde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cb53f54b14ebc3aaf24902d6bdd480461fd1cb947b0aff34b7ea08788e0a35d6
MD5 e676c2b0b7dd82ef897a0cf3fc14a65f
BLAKE2b-256 fa71c9fa0b5d8dabcccfa61bb9847289421b3ea5c38a02a882847715b8dafadd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a74edab82cc2e588761dfb37d966714d5683c6589d73c235cffed6504e0d355
MD5 97614845d620310cd9af91dfa7bbf59c
BLAKE2b-256 ca8e9835a003346fcbe0aacb045a5cfbece9aeee8d59a70b63e70a781e830411

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 420e3ed77ed181278ee6cf42635bf1815b5f9b777de7c7a9cbcce4952fd734c1
MD5 95e73bd22511c92541c0a77a21df97ad
BLAKE2b-256 618506d1b392cfe49b68211c0c97ae9e2cdd5b5f7deaae776ce7e56555a48356

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 302797849109e60e159f57a751dbfdde795fa58c0dcf9a1bb0008e6de5213ba5
MD5 19355324a3ee9b2ccf03cb8bacd76704
BLAKE2b-256 7b977463f323dedb2eac520a087469853462b08acb32089ec21f65f61dc9cf51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 90b375152845527ce9398d4b79edf857c5729640c508a57928f66be9e23f9497
MD5 141e659f2e0f2464a1b5e91266213ee9
BLAKE2b-256 37bc6c401df19a09a8ceb7c44c8b6a6bdf1285e87e271d17df7b1658b53dc1e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c52a5d044ccf30e9af2886f65ed265977f041bd37207f6d72b3bb4bcdd19f769
MD5 88646fd6f6d0e95b625168323eaf6c2c
BLAKE2b-256 4b1338a3500a0dbc0c74c267d625d40e5cc6079b757bf1d4e574c40f11e83587

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8211fb9b69739c3321315f3efb593f544ecd403e985caf039bb33b6dcb7e0f40
MD5 a8250c9dae9f6902ff88d9655dcdfbdd
BLAKE2b-256 92b74b61aa1712141639c39ea8c115917e3f9da6ba4996bcc29591437a2a9968

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f3a4e107c0cf4e17ac4104496717293e48e61131079832120be52590c4ecd45b
MD5 28f568a1fb06fc35d6a0892782ee8098
BLAKE2b-256 73457057517c14645db89a822ffc2521318769459eae453613ca451c4a540127

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fc6423eb45e095d8b0c6778fe74664ea779585a6c5321ff12cd0a49c8bb97fd6
MD5 98278322e95a4b54f4ac8b044d96236d
BLAKE2b-256 9cc0127e5dad6819a2de049493b278b8f6461b4bd1fcc65b6e1c21688047bab5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0d818d571460e741171facb3c92bc795a1e1ef3018ec65724b77d7fff8111e17
MD5 75f76f7c526a753b174177361191cecf
BLAKE2b-256 71c19fbddbaaf334f410734919bc9451a073afe16d46d3f448bfb4b43dc2d61a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ae6c8edb83d36c3bd65d98c8be46fb21868c343519723793b04811d82c96e509
MD5 c07ede5bfbffd171cf0bee14a09160f8
BLAKE2b-256 5c073a79887a2b3fbb6c6e703d9f5892a0b1357df6f786c2c15a5940193399ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.3-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.49.0 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.3-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6cbb906295977f7a6472cf874e5b5c51669511e1031fadca69f4a8b287992a80
MD5 7301b7568634782ed209c7ccf0276b47
BLAKE2b-256 ba43e8a2e91cb6648451f11933210d9dc0c86f76c0a6075aec5a2a367d8f489a

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