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

Uploaded Source

Built Distributions

rapidfuzz-0.11.0-pp36-pypy36_pp73-win32.whl (83.7 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.11.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (159.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.11.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (132.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.11.0-pp27-pypy_73-manylinux2010_x86_64.whl (117.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl (135.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl (135.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl (136.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl (136.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.11.0-cp27-cp27m-macosx_10_9_x86_64.whl (96.7 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.11.0.tar.gz
Algorithm Hash digest
SHA256 24caaf22770b2dc76ecfe8a2cfa9275957563abf25d404cbdaa74bf81fecc379
MD5 502e6b85fe1ba1fe40d4cabf5f3e4332
BLAKE2b-256 611fcce5941efce3cecac2286afb29eb29e166591459db1cbd00677c047217cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 83.7 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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 d0ca0f4ed8fea8449b5028739ab4fbafbb67a7b317e21b72949af260f526954b
MD5 b40545f841f8df69d8f14c7edaa57369
BLAKE2b-256 58d9e4394f4cfd40458430c36f994ec1952a7c267e7714ba9c0ffe089d81648f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 159.3 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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 af8b541ce9025494e8f520920b7d0fe45f6f4378d3d161b2a066f7f44c4d282c
MD5 8fe72b8884e8d3c255bd5e0000a1d35e
BLAKE2b-256 a0c66e38e441c84eb3c708d633c30163d779ecdb49f5e0af72a68fcf88c5235e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 132.2 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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6177549c9a8611d86e586b39322fca1569e53f1d1ba8fefdc6f178630f16516
MD5 9dfc5e148bd9931b9ba047b2b8b063db
BLAKE2b-256 2250eb6ecf8759eb568ae935dc33ca85b65680f2579890288fd91c1385b47553

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 117.8 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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e4ce551e84b55be7152d2dc93ac4cb640e896f26319356c151479d340a96cc6a
MD5 dea5eac2443842a5fbf6b81ce22d3554
BLAKE2b-256 0a46ca4c405b3e0a35d15bd98f51db08f336898db4926874b061d8b3178582d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f01dd7fc2ffa156b21f18dd3041a58f12765f0822d28226bdd09131e59815a44
MD5 c84c3488cc4c292b54333761acf6f06f
BLAKE2b-256 bf47de046f27dd3619a88f038ba7796756f859571076c4d504cee1dc564b0804

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1e288e43862509637b184eded27c4e78dbabe9f106f3767140b054a880320636
MD5 b2e37270f0297107b6c2652e8d393460
BLAKE2b-256 f76d4a0a6293a44c51ec91d0ae1bd73a9662893d4da65fe184f261104d540680

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 40979511354f5c9cef1552848209fdcbe5e45bf263b40f73070f029765dd6d15
MD5 91889b31c4de135e310fc85fe712e88d
BLAKE2b-256 26553dcfd99de2d3219f935224b57b5706caef02f0883eea671517e1f25fb743

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 20f947475e77a58e31199c6095707682b1f9820cffe554090541ff74bceed5c9
MD5 e363effc48c2c8d3f234a0bdaa6acaa8
BLAKE2b-256 322c74c3b49f36bfa3aa302d7c3dc6c5ba83f047cb350468a6c297ad68961ea8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e4b5e926d9979694962537b8784b919c4a934d237bf2c2346e83a6168b6c7f8f
MD5 3aafef001441970bfd6e65915e2da62f
BLAKE2b-256 f9cc79fa36f6143791c59a01cfb2dd6fa388c2f9872036ac2968f3f46a96bd78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 135.9 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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3debbb430da5544189b32eae30877b6319db76358b73de2f20afa46c650f2272
MD5 86a2e8410a60b6879ed9634d9d56bcbc
BLAKE2b-256 51d5635bd0947765a992c9c387c7b7518bfcd57ab41db15f9b9e891fbd5058c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3911406834dfecb91f369d08e37a14d6b739719a0ba92d5ae5a60428fa6bd8ef
MD5 55feac8f8a902d6468f9729e7d0eaa80
BLAKE2b-256 1add66b680c2f6312a645406b29770b07639f631ce90c6deafc91bfce8fe8874

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 fe0f44e0d344395c29cf7b4aeed11cdb16723de11e54140a8fdaefef6b61cfb7
MD5 d577a75afea4e7d60326c386431bc908
BLAKE2b-256 7467759fa2d53a5fac450b7bc19f57048358829b3119d3581356f777a2be86ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cf96b2abf0c8b612b460f1098546e7045f94870638cda04db6b5b6020a366a65
MD5 60ed8e0b76d2891094b079dcc5a2b92d
BLAKE2b-256 90ca7a77835894b782adecc63048cb760b5949c197e3b8d4c3ec90e38bfd98d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 acc943582f5e7a12611898d647304a1ae5c5f784586646ef1f3da0d33cf48056
MD5 00afe37bb46fbc4973b749d73c8fb011
BLAKE2b-256 d57c95953f1abd2a4a9054f656d70131872d067c07242c134b0c40f85766b87d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 135.9 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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3b7f42c4dda2d8bcab367fca9810bf3d1b27e9951420bc22215789ca6436298
MD5 aa624aff1e09efd140a50ee55832397f
BLAKE2b-256 1d023265081862dfa11a5759abae047fbfae211551f839fcdca4f5c31f65cefb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 382791da5375383aacdfc3a693be246e86ea7ee7111099de77c8ef3cbdf5b463
MD5 590fe06b94be4111e826f605f8f47e12
BLAKE2b-256 ada9920e275532e08e0ec432816fa99c0576e3e2b3128a99193cf76fb3fed2e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6ee94e05d9f405ecc873cd2e653846cf1d62181cea1fe7f24b9110dae8af00b9
MD5 c4e53f9f2ea003091c20db43731b9782
BLAKE2b-256 04970fee3cdc6f4cb22066e1307659bbc54b4e7821fccc6711b0712b445bdeaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 334d5bbc53118169d839fb1563063d76ea67f46e8635acc018790a77ba5669eb
MD5 8c742a500d9f35ea8626618f3a7fe96a
BLAKE2b-256 60b0b6c50cf7ac7c49ac14088b205be9c2edbf0e522168f4ee40dea414983b48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cd771ac8d30e05638bcf0b2629774821708e697fb8658437dcdde9a827ce7bb8
MD5 c6466c5a16fe6a989c030f74998df0dc
BLAKE2b-256 a979c409da2d3934aa27e0e2efbf305371ef19b61a35eeea04c9c71d5edcb3f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 136.0 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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee286726eb72970b59dd71cba6d640e124a99a0ebae5847078ec6b7641ff3214
MD5 95fee58cc4eab51e09403ffd1c13de3e
BLAKE2b-256 794834370b4251a5a523de61cbceb8e7f41a5db669d0958e11f4cd6b96000013

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b609163f008107d7a17572fbc8fce905d1e9a76f24891245316815a17e070397
MD5 ef31e4820a74d2e1fdbda1462f2f2468
BLAKE2b-256 37d4d13ff88ba443ca782fa34fafbc8dc0ffdf96a5a1b2824826e7ea0dbe6e91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9a433dcbcd44b6623d5c34fe6019b57357a44e8bb448ae113ce886f5d523c3a3
MD5 8eb71d8c36e3b43eb29b54b152bbd25a
BLAKE2b-256 616973d921396ae814e0b6152d9539e0f4116260c25b1af63e6a198082cdb574

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9a44ecc19601c00fc3503d7d13255caf3a211e4461c34b6cf61ff7823111fcd0
MD5 705506cec8266ff22cf3cf32e75e878f
BLAKE2b-256 f6d990e685f93917cb03357d1064a85927ed9985ce6fd984f927aa2af743e66f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 018206e3b9d91d383267200cacc58ec179fc4c376bbb11b3652dbaeff6fec163
MD5 dbee15370f206684954442e529d8e1e0
BLAKE2b-256 706c30dc9761df61a1d5f96796d14cee45559e9da9a2de478cdff15b8b673540

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 136.0 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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e0815fc54ace93487afb6f957f2ec52847ffb00396e9e6624e841fdeb627dc43
MD5 3d6b2120993a44fd02f1bc8477c57663
BLAKE2b-256 95a0d2fdc6e0cb23bf67141936fa601627d3d8e2271e22c822f0b65863d3929d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 219efbcae1d1ab2fc9e833474a638d9e273b1b98023bc4bf05c6965a57744224
MD5 a36d2cc2633af3fb4570935a89842cd5
BLAKE2b-256 a4cec79c547ad4ea6fc23ecc446c195c9024aa9a0ff480d6bb3638b33ace0030

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f7c97197f1cb9c2dba8d268cbc586afbe784d23fd5f1d5861e914c1186abdb98
MD5 4e4bfd76e613e82f26b6036821ec481b
BLAKE2b-256 c8846a20442abfc0f013aa4b157dde5518a314ce7f3469a106eaf6b3a0113b44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 848d9842d8d3eaa573afa61b4c244f88120f7bceec35c8a855cc7a1c18257ea9
MD5 bd61c51548f89544e1ed17e4d0dd097d
BLAKE2b-256 cb7764382e7c39ca86aa25201d3ce239cf5001e48f895c698e26dc26e101ef53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d178bce0b3962f571237038101c4724ad689bf59068751cbc02a4d7b8a325b81
MD5 a2837a715c59652c025833d9712df2f4
BLAKE2b-256 ef4cafaa54696f3eb12d44c50ab42a97c799c04ca6436ad8cdf68dfb80b3b55d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1a74ad321ce467ec7bdd083ca5126f5e53efcaca4d657ae3fc39054713bfe5ef
MD5 f936d885792a4a9e653a134aa00c65fe
BLAKE2b-256 76fbc978ad99edd7870244c170750cb883fd4d9feeb6c29f077ea18b68467b80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a4c1a6bbc8a9384015e0e9003cbf43e1c8b3c781bcba5185b1181408ede66f64
MD5 bf546c85f419988d0ca5d2cfa86d50c9
BLAKE2b-256 72db954b41dda5a73a2f55aafa44136dac208e13b808f7621be5d991d39b9469

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 80d0e210d1092faaeba5d543519478d8cbc42584dacb1d1e31e153e7348702f7
MD5 cea66a464fc129facf55ba312ece359e
BLAKE2b-256 20ee7d965ade03f9f9c7665a75e4a7a1a8f54f083a3ee96e979ae28453a300dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 36a0faf63ccc14016b6ed356091ba5a7b67b13bf9608e8e5a46db3021d678d59
MD5 daa116db0e7581371cdd1e9af9bca916
BLAKE2b-256 4c6137a7c8a88407701827b1fb77607b9be51a1ad960a174e338bd1c30e11aa5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 33369e22933671c9ad440eac3376aa91270c95dd4fca206d5c19a85f2b0abda9
MD5 6eb0590272fe1e34d6a25e7fcb4e4433
BLAKE2b-256 3854d721f2575442162f7401cf6999b2eeecd072c31e68450dd74e94926932cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.11.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.7 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/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for rapidfuzz-0.11.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa665209d0788f4b15d5fbbff79954a9b07dc6a8732344e5396f34189133c948
MD5 4c479fe0f856fef1982ebded9731ee7e
BLAKE2b-256 ace1544cd9a8fcdf0c0300dcf69018a04f88a46bca5942865e8f7f9f7e5826d0

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