Skip to main content

rapid fuzzy string matching

Project description

RapidFuzz

Rapid fuzzy string matching in Python and C++ using the Levenshtein Distance

Continous Integration PyPI package version Conda Version Python versions GitHub license

DescriptionInstallationUsageLicense


Description

RapidFuzz is a fast string matching library for Python and C++, which is using the string similarity calculations from FuzzyWuzzy. However there are two aspects that set RapidFuzz apart from FuzzyWuzzy:

  1. It is MIT licensed so it can be used whichever License you might want to choose for your project, while you're forced to adopt the GPL license when using FuzzyWuzzy
  2. It is mostly written in C++ and on top of this comes with a lot of Algorithmic improvements to make string matching even faster, while still providing the same results. More details on these performance improvements in form of benchmarks can be found here

Installation

RapidFuzz can be installed using pip

$ pip install rapidfuzz

There are pre-built binaries (wheels) for RapidFuzz and its dependencies for MacOS (10.9 and later), Linux x86_64 and Windows.

For any other architecture/os RapidFuzz can be installed from the source distribution. To do so, a C++14 capable compiler must be installed before running the pip install rapidfuzz command. While Linux and MacOs usually come with a compiler it is required to install C++-Buildtools on Windows.

Usage

> from rapidfuzz import fuzz
> from rapidfuzz import process

Simple Ratio

> fuzz.ratio("this is a test", "this is a test!")
96.55171966552734

Partial Ratio

> fuzz.partial_ratio("this is a test", "this is a test!")
100.0

Token Sort Ratio

> fuzz.ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear")
90.90908813476562
> fuzz.token_sort_ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear")
100.0

Token Set Ratio

> fuzz.token_sort_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear")
83.8709716796875
> fuzz.token_set_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear")
100.0

Process

> choices = ["Atlanta Falcons", "New York Jets", "New York Giants", "Dallas Cowboys"]
> process.extract("new york jets", choices, limit=2)
[('new york jets', 100), ('new york giants', 78.57142639160156)]
> process.extractOne("cowboys", choices)
("dallas cowboys", 90)

License

RapidFuzz is licensed under the MIT license since I believe that everyone should be able to use it without being forced to adopt the GPL license. Thats why the library is based on an older version of fuzzywuzzy that was MIT licensed as well. This old version of fuzzywuzzy can be found here.

Project details


Release history Release notifications | RSS feed

This version

0.7.3

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rapidfuzz-0.7.3.tar.gz (102.9 kB view details)

Uploaded Source

Built Distributions

rapidfuzz-0.7.3-pp36-pypy36_pp73-win32.whl (43.0 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.7.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl (74.9 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.3-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (40.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.7.3-cp38-cp38-win_amd64.whl (50.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.7.3-cp38-cp38-win32.whl (42.5 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.7.3-cp38-cp38-manylinux2010_x86_64.whl (482.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.3-cp38-cp38-manylinux2010_i686.whl (377.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.7.3-cp38-cp38-macosx_10_9_x86_64.whl (44.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.7.3-cp37-cp37m-win_amd64.whl (50.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.7.3-cp37-cp37m-win32.whl (42.5 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.7.3-cp37-cp37m-manylinux2010_x86_64.whl (486.3 kB view details)

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

rapidfuzz-0.7.3-cp37-cp37m-manylinux2010_i686.whl (380.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.3-cp37-cp37m-macosx_10_9_x86_64.whl (44.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.7.3-cp36-cp36m-win_amd64.whl (50.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.7.3-cp36-cp36m-win32.whl (42.5 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.7.3-cp36-cp36m-manylinux2010_x86_64.whl (483.1 kB view details)

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

rapidfuzz-0.7.3-cp36-cp36m-manylinux2010_i686.whl (377.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.3-cp36-cp36m-macosx_10_9_x86_64.whl (44.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.7.3-cp35-cp35m-win_amd64.whl (50.9 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.7.3-cp35-cp35m-win32.whl (42.5 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.7.3-cp35-cp35m-manylinux2010_x86_64.whl (482.2 kB view details)

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

rapidfuzz-0.7.3-cp35-cp35m-manylinux2010_i686.whl (376.6 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.3-cp35-cp35m-macosx_10_9_x86_64.whl (42.2 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3.tar.gz
  • Upload date:
  • Size: 102.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3.tar.gz
Algorithm Hash digest
SHA256 4209cf1559c44ab535f51809ef937a7956e7a2e48972b1f062ff8c57ffe8f995
MD5 b0e11bf7cc5b478e4f85307d49ba3e9d
BLAKE2b-256 4cab38ada858647444b4217274ab3ba96111d271948682b27dd524ba9fc8993a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 43.0 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 f7dc153e7e37e1d8b3dfa6356faa6fc4c557e5183b165f7cc5d2304407aa46d9
MD5 db376a044c2e073fc0919954a81c289d
BLAKE2b-256 64b704069bb4753e1abc50db4c47fc9c70f0bdd97d71eed3b0eb6b212b18ce60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 74.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 05655cbfbe30a5fef2bca12bd1603709b6bf2390340044ab88d8dbe1a6ecebb0
MD5 5f1e4179cf6fd8552df84af41a74b557
BLAKE2b-256 f74c7e32707f9cf13aea1626ca269799fcaa8de0607935d7710a5d1f78e0ffd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 40.8 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 323c61e290f6d182e687801f251c4b3f6856c826fd10ad8cec152ad1e17c3234
MD5 3c606a7cf31dd0d5d7f523c9c63ff760
BLAKE2b-256 f04de7080cfa635aca652de8e823c7332fdbd87b10321e3b8f37ef57e67bc62d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 50.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b6840ca2d1c4361add6a59a1b83355fdc91d74443644affc3935fc30966a779e
MD5 cd6981e98f2ca1eb99dd8e885d198320
BLAKE2b-256 6a0314559912da4652140cd8805ebdaa07ae9be360b01532b669ddc1e271c0b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 42.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6ece6efec568c9ca4334eecab5798009023988f2b1475ac1e8e668804cd3ee83
MD5 1673bb5bd56faffd5018cce91429d73f
BLAKE2b-256 1fd363efe43cd0752f39d2a98c3c0c999b86917d3035b90817499205998e255f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 482.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2a95f17dd9a5c4321c4a1a3777eecf8f1ea629eed524cc5e1245582c8cfbaa9d
MD5 1c5ce648e209a0e7bb4225b443af98d5
BLAKE2b-256 ed1be97c0486b1eca824fb556a9bc7f0fb75a5eb3ba18e29673d5272baff0944

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 377.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 86e206f246a63172509d2880200567660a78f6fa7440c2dd7a62cdbd3e65fd36
MD5 bf5801b35c0c28641696f762c8f9126a
BLAKE2b-256 18c88bf03b9e45ef161b5551c6ff62e5ae8ca9cf143f6cf24bbc80d9b73a2bbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 44.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3cf3ebf25bf60f68352feb20c9f9c82844bd6e9251b65f706304a716476beafa
MD5 71a51187aafd870bf7459d3017cd925d
BLAKE2b-256 43d3ea59898d83be9b35e72a2b7e69d32630f3ce8a8fceb7333c2f22016efe86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 50.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3545fcdbb23b354dafd14335390dcb1c36d2c8e75d1e487ec5396d9d6563e601
MD5 60adae8f5025b4c3ea6d404db4baf8d7
BLAKE2b-256 aa0b35db98aeedd1b2961201b727ea45b56dfcb32dc6be23370d0c6497938d97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 42.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 93b4cff95ef2f0275f44876e24b2462676dd4359d256ffc8c334f118ff42a890
MD5 773d1c221ea9a59e43c2d82ff678252e
BLAKE2b-256 6d416eef7fe27e60dc044a7e05e4d4278374fa3050516bcd2a1b573c291836c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 486.3 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 68686682cf884a53cd7d9405d708be7aa05f5ee78fbc27d72a942bb4eccb7d1c
MD5 75f1056d48bc73f0c10afc990c5a1fe1
BLAKE2b-256 f17c7643bc31ae00f2f0c18040e8836db49f329155c2efa45cdc4bc27aabf09b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 380.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cc711b66c0bbe1372a1269136c32dfdcfffd301bfa83e86b9de212894f4a67d4
MD5 f2c910cf0fb512609048c20674b3e1e2
BLAKE2b-256 022512317fecaf0b1af86d4eaabb2463313fc46564a1f540a3b1e1a64932e75e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 44.0 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 496797f37c1bc425db7a10e1f34b7a5c3f5c6b4bd974fca263d304ff8dcc869e
MD5 e769561bad3ea87237243724d47dd699
BLAKE2b-256 fcd3f41685b9c14e53b71a5ff4378bf6a635ce784b66646b510fce466eb391ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 50.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 83145251b474c60c1673ac673fc581c1192cd53b4af20ed8040606525c88a950
MD5 96858ae616b0aee2f89aef2a550e095e
BLAKE2b-256 22e28047bb475e85c3d88cab20f61afbafe4ede4c66292c054b948f8aa31d716

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 42.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1874e9089e78635e44e20b0cc543fcaa3783b9d83d1c420493347004332c4f2f
MD5 cbe4ac1648227652128dfe3390ab5c71
BLAKE2b-256 e07e32113f266045e793e9766ed64ae271880c877f5654dcfd1af0ab7db7115c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 483.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d9865247b00c28f26f751d1534169be61f6950a6f82b6785f2c4edccf891747f
MD5 0a81d411a55f602d230bca40cec3e684
BLAKE2b-256 7312f7fc52748eea4f605a6b77e8c89ba3fa774039cc9c01dc6e1c106cfe8dcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 377.5 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5d707187b105cda900104f1e719ab79936def60031cf419cafab24cc4b983de1
MD5 501cd53b965aafdff99a9ec2e4c7e9e8
BLAKE2b-256 1120ba1f4140c64c9d0b9a8431cf510ac9ec730240894d42e3ef40c46921000e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 44.0 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7fd27842071c0215fe223a3be9376d278b208389689911c55d098b313ce59df
MD5 6c1ecf481afe2250939d554d2bbbf088
BLAKE2b-256 d531931f2e053b33f513d1dafebf9fcc7277a40c0324f4898fe13229be19055f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 50.9 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f9294534256c5ff8b4657eaa80112c015b68bd582bd0518f24715e87e28e0788
MD5 a0a586f4d950b4d001895cc980a4380c
BLAKE2b-256 b901a99c69a4a257ad8065f31b793892c7e74be20460b3e34c891eef2013bf87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 42.5 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 629e77c5948c1f91820282f6c6a89cb0f7ecfd9b567071405317004403e7cdb1
MD5 53f53a6879f335fc15d669858bc73390
BLAKE2b-256 691ce5da876976fa952744a1c72de7c51f53d3bcd76242440cc58be75c6b2c59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 482.2 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 849b6bcc82afc817cbbd2d65436334efe5cc55b70dc5cd39db5ae3421274036d
MD5 e603111f39ae09183631297ec707e6e0
BLAKE2b-256 cbb361892bce261ed0cdc7668c2c5bc3db7f2f3959ac615fa75a8036fd2ab1e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 376.6 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 df2b38ebcd8944c3476bd5cba114a966f787c3a43ea2f361d4c0e71be9031ccf
MD5 73a6b9cb4775d16c385e82f36d917422
BLAKE2b-256 e275625b77c085b56a21b837a0fde8b297e2720b291382c81729700245c431dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.3-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 42.2 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.3-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f8570ededa73fabc430572b008733f2edfb68a32433df6687fd6ddadcd053a8
MD5 c460beb63cc8774c47481cbe7468d20b
BLAKE2b-256 ac1fafd2b81cf4a56893dec872e725a7b1c9c256cbd04ddc0391fcfd2ca51e78

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