Skip to main content

rapid fuzzy string matching

Project description

RapidFuzz

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

Continous Integration PyPI package version Conda Version Python versions GitHub license

DescriptionInstallationUsageLicense


Description

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

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

Installation

RapidFuzz can be installed using pip

$ pip install rapidfuzz

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

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

Usage

> from rapidfuzz import fuzz
> from rapidfuzz import process

Simple Ratio

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

Partial Ratio

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

Token Sort Ratio

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

Token Set Ratio

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

Process

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

License

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

rapidfuzz-0.7.8.tar.gz (227.7 kB view details)

Uploaded Source

Built Distributions

rapidfuzz-0.7.8-pp36-pypy36_pp73-win32.whl (49.5 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.7.8-pp36-pypy36_pp73-manylinux2010_x86_64.whl (87.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.8-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (52.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.7.8-cp38-cp38-win_amd64.whl (58.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.7.8-cp38-cp38-win32.whl (49.9 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.7.8-cp38-cp38-manylinux2010_x86_64.whl (691.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.8-cp38-cp38-manylinux2010_i686.whl (527.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.7.8-cp38-cp38-macosx_10_9_x86_64.whl (55.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.7.8-cp37-cp37m-win_amd64.whl (58.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.7.8-cp37-cp37m-win32.whl (49.9 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.7.8-cp37-cp37m-manylinux2010_x86_64.whl (695.1 kB view details)

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

rapidfuzz-0.7.8-cp37-cp37m-manylinux2010_i686.whl (530.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.8-cp37-cp37m-macosx_10_9_x86_64.whl (55.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.7.8-cp36-cp36m-win_amd64.whl (58.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.7.8-cp36-cp36m-win32.whl (49.9 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.7.8-cp36-cp36m-manylinux2010_x86_64.whl (692.1 kB view details)

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

rapidfuzz-0.7.8-cp36-cp36m-manylinux2010_i686.whl (527.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.8-cp36-cp36m-macosx_10_9_x86_64.whl (55.4 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.7.8-cp35-cp35m-win_amd64.whl (58.4 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.7.8-cp35-cp35m-win32.whl (49.9 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.7.8-cp35-cp35m-manylinux2010_x86_64.whl (691.3 kB view details)

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

rapidfuzz-0.7.8-cp35-cp35m-manylinux2010_i686.whl (526.9 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.8-cp35-cp35m-macosx_10_9_x86_64.whl (53.6 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8.tar.gz
  • Upload date:
  • Size: 227.7 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.8.tar.gz
Algorithm Hash digest
SHA256 953b5d8532eeece93c1907f9230b2f63f9deb5100cd9bc65f598ce9e590221bc
MD5 f83bf5e602720352c2946cb3253f41de
BLAKE2b-256 b5c80e63d57d23d02dfaf0565432ca81222bf1844159b6cebb9a536fc32b522c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 49.5 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.8-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 ca35fff958d16879d23c6b9aca7d0d18ec9a864d655c1eaf9a93f215018254a2
MD5 520afb28d8a5737b97aa4f517c208449
BLAKE2b-256 2c539acb89d118308cf9f8d71d735bd251b7b131538a28da115ab6423789975c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 87.3 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.8-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7fbd8e944509481ae06d2750f6f454157fe70ecddadcffa79c9cdacc13aa2ec9
MD5 185e7f0edd652129741c79b448523d79
BLAKE2b-256 e98d7509d192d918b523c56ac9ea1987406cb4bb642a24b673e5ba7a41e0d52a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.0 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.8-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6db2c87f5786ba0ff2252f63cdedade9765253dd6873e3a175c3907c8e852826
MD5 20e0e56cff61ddd41786a45e44391839
BLAKE2b-256 726d29e0cc310102d52d35e7c6e6601b79f3293e3d3104b0aeec1d3cbb77bb1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 58.4 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.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 71f078e08359ea1160e68c7a061de67330c172c4f5cdc6a9bb642a95705aa70b
MD5 7037aa65f9fc3bc592d0fb41cafc9799
BLAKE2b-256 04a777cd658ea4b571a0ab9d5d5bfc6ce7e68d77facaa87effa5cc0be129bcab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp38-cp38-win32.whl
  • Upload date:
  • Size: 49.9 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.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ac7bce527708f01dbc24aed8b4fb49a5a834e322c1d7911e2e1743bdd3af7fd5
MD5 f10a6cb8d9ffae515887aa543cd66e16
BLAKE2b-256 f0c2930a3b23ad115b456b6a06f29d9259ff41f988d39eec4bc4a80e3aaeff84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 691.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.8-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 522a3502108093355fb9e24b01d08f059dec795ac7b5add0f46d70697030e9fc
MD5 5f5da5dfe28e70c85b4efbfeb8114978
BLAKE2b-256 c5ac2ec6132d2fdac6efa01065bc282511dcfbb615e117c2c87b2348594798db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 527.4 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.8-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6d13d23e5a731a059d53d493bed7c1deef7c0141cbfa5913945cf5c2e60cd9b1
MD5 d0c97f26273575f1a6dc4eef3ac6e315
BLAKE2b-256 77a2e741a1e3fae832ee0f84f5a3d8f0c647b928015f19695faeac02ec76c6ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.4 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.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c2c3cb3f790b15373a6f5ee983a6fbbc0f856f65be9e7c977929f5703b7dd29
MD5 8a974b8fc5c7c423751d8da9c3a8824d
BLAKE2b-256 7ddbb3ae8756ae2763c1e1b45539d22a1427c3783b34d35103d7c20d18ec583e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 58.4 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.8-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4d8fcc39e8dc6659d21bc26daf62a6168caab4fb9f9be7c941f0150e5ea9e1be
MD5 ebb37c5230a4bc62754dac1bfa446434
BLAKE2b-256 bd7060cb162484aa661c8c4860b3ac13c392dd6c9493cbd3bf8d38bf4bfb0a35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 49.9 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.8-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 36e15b65d1cfed06928a409cb384906ee7c1639c0dfaecda80f7bc12b19c50bc
MD5 20ca772938ce6d13e8e49fbd261cb69b
BLAKE2b-256 8bec8fcb8a54263bbfb468fa1a34b9dd5b6c711748782104ec4b15543d0652c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 695.1 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.8-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 22ba3a7a16489c66455b9234cf2c63f7f7299f81b83226523652323437f75652
MD5 f4771a76f41bb2383afa3d8e97538fec
BLAKE2b-256 91b990f9a3d8c7d14cc9dd070c45d151d86bc674aa16eb9666bbe29d22ba27e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 530.7 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.8-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b7f7c648befb29f983bcfe44dc14491c9c05ce2244c5d875c34a487be1ad7bf3
MD5 98c1b44fc8f48c4d69d500802be5fae4
BLAKE2b-256 c25610e0903af1a670a4dffc5eca5e182ef39663cf1395b908281964c65fe018

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.4 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.8-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d2f7f61ee300de9b4d726fb03f7d65409d0ad2bf4fb51985846eb2a07b85680e
MD5 c4cc4eca6b4c679a6caa1089fdb75a71
BLAKE2b-256 18414ccc6b72b338abf3b7f5cd2dd68bddcba71619a13417434ca0bf9f897117

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 58.4 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.8-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5152218e61962d9cf811d2a16885e8d1739472e26fbd65453e7157c7dca5b8c2
MD5 f5ad78a6920b6e13f2f1865a3da7f7fb
BLAKE2b-256 748846fd88682c4cef8ab0fce784a888735e7e4094f35f4388d7814d9f4324ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 49.9 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.8-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d647a559b9591be1603179eb57f3af37b4215600133c568f093f7baca761354e
MD5 37d16f3610f7eb3148929d8d137825ef
BLAKE2b-256 0b8e4d5039686ac814340f56de3e159c96a3193e72afafd3c66cd03c11a33f51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 692.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.8-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e556e8928bc217896517b38af424828b4601612676942943cf2b6d410e83ed75
MD5 bebb41ab787ea486cbab920bab50d46c
BLAKE2b-256 a37f5907f73305cb104142e9a537dd00ad325d71ba3b2222e448dc899e6f264c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 527.7 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.8-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5f916fc048dc87393dd17d3ac39bd81ae236751d6f82d2825864334bc4a57f88
MD5 1084ccd4e135568f82353151403594ba
BLAKE2b-256 27f9f29443d55da6a3e30fdae1579b60ea801953c532aa595f96651d34390e72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.4 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.8-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7781d6b7ec1f202dd7e0f529f383e3d7aa4d07c43d4d2f5ec72a9df56cd4b593
MD5 6d6d00bb2971162351696d1e8234cbd2
BLAKE2b-256 1135f7b30a0266446be137209d24a57f7f0f75f0687d8a60c569d62990fade9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 58.4 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.8-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 7d9363f22b79f447cb53eaa9517b2c130a9b014f8bfcbcc54d41dcde1d3f9330
MD5 45472b63baffab195eedd0c2a72256aa
BLAKE2b-256 1175d3156285a6cd5ebf65e06ee23ba4a08a573601039ca617d4e24c244f2d03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 49.9 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.8-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 d47ffe7be822816b5ca66364736cc0edaacc040bdf96242eb53804db5a271b80
MD5 d5c8ab8ec434515b7b4a93abf05c9a35
BLAKE2b-256 8af0597a127fdbd71596b145af8ff1a62984dcd8a701970f7d62ea81186a4fdf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 691.3 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.8-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 edd4315d0a4443c7b8bae54a46ac49187af976c81e0067a158371d0fe5a666d1
MD5 52367b2e876c4cc55d6d4a59ec86f3a6
BLAKE2b-256 720fddca4c5837be3199502a16d20dc28f4e990fdda9f706a87612062b30e1ce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.8-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1c79dc03bd82dbd6e9a14bc399661ac01f2ce4baa6edf6191ba4fed82169c0c4
MD5 ed62ddd0897dd9090723b90d95c0750b
BLAKE2b-256 cb39c391cabfbe342d83421467972d4796421e8ff80aeb5ba177da80199875db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.8-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 53.6 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.8-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f40c08931bf0e4935072471b9af8f7aba4ac0ac084106f6795d3eca2f82fe12
MD5 f1c1c078d9e2bacaa426461903e188df
BLAKE2b-256 b610c10e02c9ea9786e01d9b489e2c3a8b1ecbd48edb5709cca23c93f1f17a10

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