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

Uploaded Source

Built Distributions

rapidfuzz-0.10.0-pp36-pypy36_pp73-win32.whl (83.0 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.10.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (157.0 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.10.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (130.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.10.0-cp39-cp39-win_amd64.whl (125.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-0.10.0-cp39-cp39-win32.whl (82.2 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-0.10.0-cp39-cp39-manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.10.0-cp39-cp39-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl (134.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-0.10.0-cp38-cp38-win_amd64.whl (125.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.10.0-cp38-cp38-win32.whl (82.2 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.10.0-cp38-cp38-manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.10.0-cp38-cp38-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl (134.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.10.0-cp37-cp37m-win_amd64.whl (125.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.10.0-cp37-cp37m-win32.whl (82.2 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.10.0-cp37-cp37m-manylinux2010_x86_64.whl (2.1 MB view details)

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

rapidfuzz-0.10.0-cp37-cp37m-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.10.0-cp37-cp37m-macosx_10_9_x86_64.whl (134.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.10.0-cp36-cp36m-win_amd64.whl (125.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.10.0-cp36-cp36m-win32.whl (82.2 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.10.0-cp36-cp36m-manylinux2010_x86_64.whl (2.1 MB view details)

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

rapidfuzz-0.10.0-cp36-cp36m-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.10.0-cp36-cp36m-macosx_10_9_x86_64.whl (134.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.10.0-cp35-cp35m-win_amd64.whl (125.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.10.0-cp35-cp35m-win32.whl (82.2 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.10.0-cp35-cp35m-manylinux2010_x86_64.whl (2.1 MB view details)

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

rapidfuzz-0.10.0-cp35-cp35m-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.10.0-cp35-cp35m-macosx_10_9_x86_64.whl (125.9 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0.tar.gz
  • Upload date:
  • Size: 56.2 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.10.0.tar.gz
Algorithm Hash digest
SHA256 f624cdeb03bb426fa3357c6e7d8743d8f1c76aa2b0cef7a84cd8554c4f6b5b1b
MD5 588c933872d16b283c62cca4fec2f46e
BLAKE2b-256 8a4b3f8e82c666bfab7d42ff3422dd467aa41e291c1646758616e4aa907ae1fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 83.0 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.10.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 dd5ceab5ab40173d0318570cbfacabbb054d33c10c27533a2cd24d6a6455b546
MD5 a2c38f09dee70545aac21191598ca26a
BLAKE2b-256 e4ed78b15e970594bb5d1db6592d4986e9c58038a1532f6858e30807e98b246d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 157.0 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.10.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 34bc9d5b388bbdbe596fe5f029023b110bbe5deb43dce87bddeb16342d21163b
MD5 ee9ae62fa2023f8d86222502c58a4517
BLAKE2b-256 2ebef6317d792e74ded9cd27667ab53c7bda0b92c79f5a31cd03a22031ee26d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 130.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.10.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66ce8f9abc9289a4ddfce615cbef483ca867566d64b6ec25f4717d5208fb382c
MD5 74119a46531527b00c1fe30cfeee9bc2
BLAKE2b-256 67e2a106d9c349639f373eea1f23596f0d0214a2b8c55ab55c14b385aab0ee65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 125.8 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.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5e72b7e032e7698e3f00302b40f336ae12b6aa79cc7772236fc3ad9082f49668
MD5 37e6ab3b1289dffd9a7ff43ba88dfd97
BLAKE2b-256 0faa6bdc2fca4a16d9c47817e914a05971577a71c7798ee23a2b059cd1ba9514

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 82.2 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.10.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5bd36c8bc134b73e4d57c98bb1f571785ef602c29451e20d4a88b440aa12f16f
MD5 ee676357f1bae4064ac5821a259e9987
BLAKE2b-256 197002cb7dcf7701622e8a3c4b68f6f49a4de804d4e6ac9e07e29b82f1955994

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 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.10.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e79190333c70d3db4cffd6868c6ed7926bd0f79c689b0780e6da2816003ec7c7
MD5 2d51b4fdf890d0c6aed8195b7646abd5
BLAKE2b-256 2ced92004000b15c19fe21d12e7ce85b8eda299ce5a3118b1be3b48896de3e22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 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.10.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4c1c3b8fb90340cc425db32ac35be78840c08130fa8f2e2df638aea25f21a607
MD5 a956a9a3f9bc797361925d518021346a
BLAKE2b-256 81d227dea44617dbd2dae8cdd1292f680cbd1a5245b4a2b0d97f02a20d0f2793

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 134.6 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.10.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8943a19c4df4ffd4bbb4c0c2180d5d4c460080c10a31712a9447b25c9cb28829
MD5 4dea7591ba365dc3d7f51dea1044b77b
BLAKE2b-256 368352562fb03765daf1f296a213642ee4bef96ddcbfc595d940bd9fd50ce613

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 125.8 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.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4a685917a645516b4fa80f4d6ad8cebea8ab5f1e8c4a168e629c14aafaf14dd9
MD5 8e251a133b513af02b2677f5e1386721
BLAKE2b-256 d62b78783b0eaec19418b20ff69828ea8c00b55a7f2d0f98973b0d116ba6e44c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 82.2 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.10.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5038e31ec0d7165db902fb46b78cc98140035d51027bd6688f5e65851bb10231
MD5 f39a46032f1c71a78b31d185d1025788
BLAKE2b-256 0459ebeffed9d671c18d7c0e68956e48c4833a1b9e52da1f86dc4610ee2fb0cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 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.10.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 73a807ef30445eec849da826ea9c49dcaadfe172927d72b87d1711b33e72ef59
MD5 1bdde2ac8564727d84b4a567656559c0
BLAKE2b-256 97b79201891b52ac6a4c16b6b670d1425abbb1b8baf96479073f729b7c8a8fef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 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.10.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a6cc12e8f2fe27fe34bb2b5fa3c58fff276cb72237d681a8b73a8abdf2ee2700
MD5 9592473f7a7cd9a75f0950d9decf4a74
BLAKE2b-256 41428d85ebe6d1cdc69274b088fecd69a463cd4f3f2252da1c0a48432cb8b749

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 134.6 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.10.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e9cbbc0219672d63f512bfe6c01a41a455a757a149b5258545784f3214b4371
MD5 bcafbfe30fe0bbd6f3bc4641939f14b1
BLAKE2b-256 94019bdf74ab53860928815e691b32ad035faea3ced83dc045b43cefee2682aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 125.6 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.10.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4686c93ab61d7cabd2a30412b7a05a6a9d45f98037ec51b7dc3d59f04c7986a2
MD5 6fcef8cf954991f37f61ff1fedb258dc
BLAKE2b-256 5bc105b11518cab95531c052dfe0949c5fc323c72d84f1aa151769c7797cc177

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 82.2 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.10.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ae7144ade2171fc921aa58a1d4a0cb402ee38629a430c71faa4e6c45fcb92540
MD5 b56bcdf0f52a5ba08da466c58c50762d
BLAKE2b-256 ead88966f056f3d71f44cd9cff2c0cbeda8fe172db42b9a9193a61f84aaaf7f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 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.10.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2eb19fff92a9288a1d8844de168071607c289bedb480a28b8445d37a434454ad
MD5 729018cd1ec098b2555569a98788b730
BLAKE2b-256 666245f358e6c7e27ca0fb298003a90b28b2aecacf38b762ae593877f4afcb68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 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.10.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4744cd77ccfd8a87a2d8e65a60ab70753ce6aba03bd41e16a25d10fba211da96
MD5 f5e27d56413ecbb0e309cda947a98291
BLAKE2b-256 5a127c85393c1e08c5a32fdc37118b71384296c1f742adb206906231eade3b22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 134.7 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.10.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad64156446d207ab16549c8d3df9559caf37967a401c25a7b82b50182a633118
MD5 2716008b9367e63d9bc9142be7d45541
BLAKE2b-256 f926f0e8c63ddc3cc86deac44275262a37cf1a58533ce2e410107dbe09cf51c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 125.6 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.10.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 58cbfe79ad111ac4e4fecdcff1c44ed5b645f9300fbb2c59cca108beb805748b
MD5 e1466c8c6e9972b17eff6c8e41a59d44
BLAKE2b-256 ff9104084e77c83acb5e67dc7eb3b5ed703335c64dd0969b3e7dc1cee0875092

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 82.2 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.10.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f91a35a166dd8447999d154ac075f6940705eafe39e841ddec2bcddfbb1558e3
MD5 09139dc3488ed74c8122a9ed7e18c069
BLAKE2b-256 b81269fcc5a8811a48d03a8f3bcfa596418dc0f80964768148b6acbfc94d7b28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 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.10.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c264061104bfe432c8f2b545ab6f5a73425e48d4f56af345c35325022959008e
MD5 cb1e91eb5d7ec11726ca0d59d5856001
BLAKE2b-256 043c8a1a33f69644ac00bd78f28c5bf2f1a3a39551bbefe0a5976ff7c39d5833

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 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.10.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2676119b160e2501eb0e47fe6e5e80e16b99b99a24ce5dfa6db5a3315f3edc3e
MD5 32b9c504f73180e61fc628a84fe9defa
BLAKE2b-256 7c0ffbcb28a81a7a8df092d2a27e4f6a6302707c3556daecd245dcfb5b418cfb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 134.7 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.10.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f933fe8c6d9419376eca3a948114c524db759b4bbcbd5be2d036254ea1eef411
MD5 27a62128b7445b3b6eb3ab52f2726f58
BLAKE2b-256 43bad6daf4cb910e2fccee8e91a43a6fdb4b82f88c87fcbdfd029d92e35cca71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 125.6 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.10.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 389260c345879084ebab2a05e9b227e6a2d537b4d36a30b9a12abeafccb5735a
MD5 2beb15fded2cc53612eff5e354df68ce
BLAKE2b-256 997ce4cbfa05c389ba13a073f138a51f476fa2db87c5c4b0991768a2dce94448

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 82.2 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.10.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ed30d32e33ed39455f7e267ceaa37937077c9d0a1309ef9087464f2b2af09ca3
MD5 5183ccad304197dbd2b55eae0559f502
BLAKE2b-256 ad945255d04a494e63c7da4636b905a295c53db1fd2a1642b9461da3fa3fe7a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 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.10.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 770df60b421783907beacf1c3e268b11df4dbfc559ae6f22cddd7ef6452adddf
MD5 81ad4690865897da998221c3afb298f7
BLAKE2b-256 39b6e098f662c8cc14ddc4a0e21a99d8360b69f1156702c80b6ebf2cdc4cd54f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 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.10.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bf8a3eba224f44738df70eabb9c4bcceab90279647e2a511a5a35a61b06c2625
MD5 e2c2325594d9e3cf7ed84087d73d5163
BLAKE2b-256 cde3c25dfdcf0b14095a97a37edb06db96f4560d4e2fd84d99e969da3818e546

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.10.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 125.9 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.10.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c6d1208bc0daf463c517f6587543076c898d61f3b171d77d3a37d0b91f1ceb7
MD5 959cceccad0d39884cf4c3035e5475bf
BLAKE2b-256 c5725b66b1e4380f299702fa5cb6b12dc07eb68e9a49969c7d70ffe33ca28ce2

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