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 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 your forced to adopt the GPLv2 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. These changes result in a 5-100x Speedup in String Matching. More details on benchmark results can be found here

Installation

RapidFuzz can be installed using pip

$ pip install rapidfuzz

it requires Python 3.5 or later and a C++ Compiler with C++17 support, which should be given on all current systems

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 we believe that everyone should be able to use it without being forced to adopt our license. Thats why the library is based on an older version of fuzzywuzzy that was MIT licensed aswell. A Fork of 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.2.0.tar.gz (13.2 kB view details)

Uploaded Source

Built Distributions

rapidfuzz-0.2.0-cp38-cp38-win_amd64.whl (72.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.2.0-cp38-cp38-win32.whl (62.6 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.2.0-cp38-cp38-manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.2.0-cp38-cp38-manylinux2010_i686.whl (903.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.2.0-cp38-cp38-macosx_10_15_x86_64.whl (80.6 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

rapidfuzz-0.2.0-cp37-cp37m-win_amd64.whl (72.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.2.0-cp37-cp37m-win32.whl (63.6 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl (1.3 MB view details)

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

rapidfuzz-0.2.0-cp37-cp37m-manylinux2010_i686.whl (903.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.2.0-cp37-cp37m-macosx_10_15_x86_64.whl (79.9 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

rapidfuzz-0.2.0-cp36-cp36m-win_amd64.whl (72.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.2.0-cp36-cp36m-win32.whl (63.6 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl (1.3 MB view details)

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

rapidfuzz-0.2.0-cp36-cp36m-manylinux2010_i686.whl (901.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.2.0-cp36-cp36m-macosx_10_15_x86_64.whl (79.8 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

rapidfuzz-0.2.0-cp35-cp35m-win_amd64.whl (72.7 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.2.0-cp35-cp35m-win32.whl (63.6 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl (1.3 MB view details)

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

rapidfuzz-0.2.0-cp35-cp35m-manylinux2010_i686.whl (901.7 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.2.0-cp35-cp35m-macosx_10_15_x86_64.whl (77.8 kB view details)

Uploaded CPython 3.5m macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.2.0.tar.gz
  • Upload date:
  • Size: 13.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.2.0.tar.gz
Algorithm Hash digest
SHA256 c2cad2bf41e26f45900bd6a767c364bdc6ca9afba413c56a1cae933e6ab78a49
MD5 abbf1f62be3da9d66f28d81cfc04a6fd
BLAKE2b-256 518d462cea035564cbb0363ca12a109be3eb983e01eacd5672cc9c778c4a1e5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 72.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 802aa1273fb8828a84452830afe6728dad6eceb7d63649d32bca299f87c5cb7d
MD5 a086e9b9582f56e89c11652e07edf46d
BLAKE2b-256 0c7e24a7e53662dccc7fd70b5a6b55597d769f2320124d0a8f199f311bd8bbce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 62.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 809dcb744166a8a0f59ac672bea2cc2617782c18f1585411ce3671654c54942a
MD5 38fa1892f0c98be66e6fff99a997dd37
BLAKE2b-256 c38a471f32d3253fe599440c29e2f017a4afd60af7eaaf729ea347958a12de54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.2.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.2.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 28132b394d3355fc6bf8aec2caf83c415e28ecd461582730ce1d0e328d1421a1
MD5 7067cfbadade1252a27820411c64b66b
BLAKE2b-256 e1f8601d7cf21a5ff10edcab0e75cd04396adb1122cd1ef4d3397ab3f53d2469

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.2.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f0f15e4ad3e0fce0d507e1dec8a1faf9e52b001b8c2eda9dff0d5acca712be18
MD5 cfc019a35e4125d463236be7ef313eac
BLAKE2b-256 80d37c55e849c5d95ae271a49becf838d46418686493004b879fbae85dd0adf1

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.2.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.2.0-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 80.6 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.2.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e3c209039f11d8470f0c894ae600b85d9fd373220b59f34bfaf44dd89163813a
MD5 4b62eda9d1b7c95494fd670efd2fa05c
BLAKE2b-256 d961fcf74ec70e9a212dd9487d6c3d41e129e2fca2dd4bad17dc88ebf7d33355

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 62f8eb4bba32d93668aa1c5783d4c7a3b1de20bf6b510592a51f28ce0929ae21
MD5 516bd685b663ac0fe93dd8d26d47867f
BLAKE2b-256 859bb3f907776dbf217ae2aa88d371564dace80efda87f1fb115537dd527f583

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3da2b6d489621172fa44466d3db2f67b503bfa875e8d11e51ee2ecb7115c7c06
MD5 973bcbffdc350933ce9b91f943c64a60
BLAKE2b-256 f43f0bd5cd70c41d50171ace1c334eba1cdea0abcc5abb109d6ddd584745280e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 79b003481ab3dd7905760f91b8dae0ca3c1ac4c3d9afabd5185f3a9c164c50c5
MD5 48173b3567a98a2bfad7a46bb6e22605
BLAKE2b-256 3f2d08096931628f6d9d130b1280a6120d7b62e6c7372c3a477d042145eb55f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.2.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 818fe8864f16257c433aa9364fee1dc3c567cc5281f2c3f3c2345cc56e50a28f
MD5 4ec5817b4a6222b2858848d2387fb345
BLAKE2b-256 ca96e419f4843fd51808e6e0833f82b2e4626c8711c89ca004959cd5805a2e53

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.2.0-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.2.0-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 79.9 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.2.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a34eadd3109e9cb6c992fa4df51b5a00c34cbac6e577f54f750a3f0546115be7
MD5 b4bdf11f14de81cdf5df5c5f957b2508
BLAKE2b-256 a37bd66a00eb4d2a8ec0769a7cef1b9f726d073e490de3f931bbee49cd63c6d5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1db59b09664e2a6097db0404a8364366227d48579c399b40d1f55c05d2889904
MD5 4b273eb35182d52cb8fa56b42fdab8da
BLAKE2b-256 41b3af6b170b27549609aea6f09817d6a797cc7e542aa5b4f207851ae55d55ad

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 71662d883d252ca50fcdae4082fa10a4c44be997dfe817d3915491455c70b0f2
MD5 6b88b0673053e85750d7a8430bf441f7
BLAKE2b-256 cb1eb5fcdd5f5a1a7ef1ca493d1fd96f61039c3e2b25a70c20947e017268c52d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 638a92d7cf0678d8a1ee37b08c4ee002074188b2c2894c2e34904405b8597d21
MD5 55f41d3d06cd0d298eba0db172f4f22a
BLAKE2b-256 d1cdfeb913ada34948283833c2765cddaddcae3508ded02efd88df25ccc82ca4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.2.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fe4d1527d8d4f01ed2060c33f6b8bcf146c67803c3f2be6d42e752e6bf6cf52e
MD5 816b4a567038b938df557d893097666b
BLAKE2b-256 6376662b6390876e4b7a32774ffd448a779f66283c00197f80072223650847bf

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.2.0-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.2.0-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 79.8 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.2.0-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9ddc08f4470fe5d7d0cbec6e396ac2f49e91f1b2e759961a42b5a20d307e5261
MD5 3ae2ed868d7e91a6bc59f8366cb6211e
BLAKE2b-256 af807a9e2018f852a0f846809d4e5668225679a73495fa2aca9d79c0adf5f965

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.2.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 999d6615b7ac58a26a5339819f7e0a4d7b336c63e4ee7a5c4a1629e5162fa771
MD5 8144ab8fc045ed725ab6bb6dd780b62e
BLAKE2b-256 5c884dfb97003ac5e60084e1fdd29033cadbfd0270ff3d7fe6022aab97ed464c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.2.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 0221ada27bf7443479d3d5ed166889d9cee1176130be01a700c3435a4ad0cb00
MD5 7fc77d3688a716429578583660cc23b9
BLAKE2b-256 f46005e3b3505e1412cb327fc17930d526d9dad5f55dccc71f041731b388bb2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7c079493f0cdb342fec10014f8ecf8d162d61e6a185212ab6191194a49230de1
MD5 c54161467a3258a80fdfbfce7a06d61e
BLAKE2b-256 d43c861880835d525f244bc634188a07747361c25c8fa05dd09e10d8d2af65b4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.2.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 28135bf16df324de057c7650029a1447c89bb705f6e80b2cbb5070fff67bd180
MD5 484d9d5b54b913b6ef3fbac8ce12f095
BLAKE2b-256 7a0c5292b2375a8d329f4d174492ccfd17ac9f7a14f93864f6b80cbc7fddff70

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.2.0-cp35-cp35m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.2.0-cp35-cp35m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 77.8 kB
  • Tags: CPython 3.5m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.2.0-cp35-cp35m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 baac5322bbc4cdba6dd37d0d6ae27a1400204c381353b77d2f8bbb63cc8953c7
MD5 f85823f15be3f5443052eefd53a6d178
BLAKE2b-256 a05534efe4155c5d5f0642504390d8f7d897c3421e49ac1a84d0c4f3d5363f10

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