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. These changes result in a 2-100x Speedup in String Matching. More details on benchmark results 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.2

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

Uploaded PyPy Windows x86

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.2-cp38-cp38-manylinux2010_i686.whl (376.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.7.2-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.2-cp37-cp37m-win_amd64.whl (50.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.7.2-cp37-cp37m-manylinux2010_x86_64.whl (486.4 kB view details)

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

rapidfuzz-0.7.2-cp37-cp37m-manylinux2010_i686.whl (380.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.2-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.2-cp36-cp36m-win_amd64.whl (50.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.7.2-cp36-cp36m-manylinux2010_x86_64.whl (483.2 kB view details)

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.2-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.2-cp35-cp35m-win_amd64.whl (50.9 kB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.7.2-cp35-cp35m-manylinux2010_x86_64.whl (482.4 kB view details)

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

rapidfuzz-0.7.2-cp35-cp35m-manylinux2010_i686.whl (376.7 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.2-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.2-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 d9f645c5b45445244dcd8b4dde04d864ab791724f13f3686eca0f5fb2c4d31a7
MD5 73e218e4c6221602ebc26b2fe46ae1fd
BLAKE2b-256 54926fe7e028c6cb57af65e3ee488df089edca6df1a1a64d401dc7d6019f65b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6a3ec895a1287085e8ea6325e4da87d5e3fd7d5b624697561bd56732d8c47651
MD5 e3baa88b5da5b17a14958e9791acd066
BLAKE2b-256 8b6eba100b71c51e970d8ff07997c54fa731784817e8fa321dcd8027dc71ecaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 688e9497f8f8d4ac432704d8ae1d9b400749ac7034c099940c64bd61092baa89
MD5 950158cd03f617e51783c65c31fc19fd
BLAKE2b-256 7170dbb8dadeca25a2d920c8a1738f1f10999ee1ab4f2c4d8fd069c083fa52b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d0deae7221a8a68a00c468c8e2501236f90b64d8864d712020f470bc653385e8
MD5 693acb9199a3ea54591d478a96635369
BLAKE2b-256 44eb6609620c92a5848d1882a231d3152d50478234ea4d7dd1a19b7376ac83d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 76339dcc4d3e9a2f4671c794ce876855a1fc0918a0d5b181aa13a34d2bd34284
MD5 79a18bc9bcf391c065c1fb497ed6d6e2
BLAKE2b-256 c7cc7d2787df720a1ab6135445abf27a04633cdf718ebed57d791be07ae7c165

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9c48414927a272dd38d31ad399499bd7f5c16741f073830da3ab58725699ca35
MD5 023f04999abd884934c5b2e031d5dbf8
BLAKE2b-256 37432393c22b377b0139b71cc1ac6399a45a7de34e6767b1bb742d00d4a1f0b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 376.9 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.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e612a39b7f72d1941e87c97f2a7e2738a32b100d254061e0e7b2888f9dfdc118
MD5 67fab13f9d4b24641079800e8230e816
BLAKE2b-256 9b41745ac05fced90c906ca43603fb63815d1790b9cd2a8053906a0b16a3c3ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c0448a87bcbd555d0d83bc2d84bf173425d8c84755ba15287d65bad4de825df
MD5 dd628444a5d100513b86c3ce8780a1bc
BLAKE2b-256 5ab271cb321b03d636fe163d8edb0dfc2d8d1ed141592d25021ee064661a3b46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6d6916a0d6f6b1b4e9dc7f5be18a43cf470382ae1192c7d6dce24d87bb12a271
MD5 46ee6da7bfecad6cbd95645554d7ebdd
BLAKE2b-256 fce53920f6916c9a8a5636b2dd129c4f62458679f8022c503dfedb59700ac0da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 afa24bcf3c160d98df4a6c304ee4d32359b688d75e631e4463aa9a698f36d7ac
MD5 494f94f2f05b7d350f7e0c92b5851afd
BLAKE2b-256 99df2f152d0e4d02631f70e02fbb42ce539306de1af2eeb254e0217b977abca0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 486.4 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.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3a9887ce878cd182637a314ee234508256b680baf6d140e2d1f16b8b0e5a0371
MD5 6e8856f95c930e1057c479dc0913b84c
BLAKE2b-256 344c5d663a483c4c439b8c7319ad343696b7e980fd47caea059cc9ab2e6d124f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 380.3 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.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b38b18c1b408216709cf1448a1cb2c65783b37d2d2a23f90ba33977a02f7411b
MD5 539e36003ce71e38c0562dca09d4ed53
BLAKE2b-256 9ac608a06a7fa8d345f269d58e5803952e3176c5d4d0e8c981ad1ca78e0173bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f276bd5a28aa5cd04dd3a6c322d6650bcaf545ee11570cab7fb5600808a3d393
MD5 191adb5c8559eedf76c32d7e0ce8d09c
BLAKE2b-256 4d53cc372f602cd653308baf0d002bf6106708dd4a212ea2c53ea6a7c5341405

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c0d21fb0383843fdf71a9476567d37cf7a47b97f30dbeb99676c6833cc5c4505
MD5 0a0e944874abfd8fd01c0309dccaa393
BLAKE2b-256 c01c1dbed18b133ca3b6f7eece69a2639d8ff04c711ce5277ceff5b86214563c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 87db702ad1de38bf6c82c75014f10be82baa66ad0f9a734d0d39495a21056308
MD5 644fa6a2fd1c9a6fedf063c3db47f3a1
BLAKE2b-256 8bc4130ac5360a6a9f0219d151ae8f02e6c6dc1c8b7e1394e6344029fcf5ae3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 483.2 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.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d1a3de5f93efc996533060d2b1f6ba8c98915befab69c690a29023d99d6a75df
MD5 a9d0acdda7e2dd76586d88bb725d679d
BLAKE2b-256 25e865bc178d9a81c20aae612b32b373fd1930d9b0a3b80984ab8d98bb50b6cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c22937d9bd87078e6ed63eb5bfeedc00128f8aa9730f761f8e3ec745ba35c2fb
MD5 d3e3e08285d90c878b9abfa0091c38f8
BLAKE2b-256 43f059d8dccdb6bd210680e1697686dce55d9a28baf02f1c2aeaf134b0fa2ea8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea1ad500b320bf38b70bf7172c372877f0b22770e5b1a4b599b73fd347c4dded
MD5 afe9f4168ccbda55ddef4e2d8bb94274
BLAKE2b-256 49d6a2a5a32ed8c05a4749d3b0d0e6f61b7d2c7601509063f9aa0bc9717dcd49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 88c194ff3ea65c36d7e6ceeea5687fe50dfa7c3a5b7d36ea2faf8fdb1593a9b0
MD5 32223e2c2aa8b46b210a566d882b14ae
BLAKE2b-256 a85ceabf02edf2ca71b6b8982a8ae305dd26e9775eec165dbd7c28158db26555

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 26a034aceca53d7380a69a5852cd01bd20415b2b2782ab69d2eb685a1150b482
MD5 ffa48195ad2254d580330ec8a816ac49
BLAKE2b-256 2ce5b6dd24db42f67692f2f02fc88db39edf9120d4171b0ba249ddc0f115435d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 482.4 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.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2a8344359a986a26e55c09f7f796d59fa6da8edeb2a57b0dedd6440dc14bb54b
MD5 e582e7004029fe4a08544a99e28f7206
BLAKE2b-256 2c171648e2198b0b2e91abe8b21554c8f3decde7c2a739b3b168b9591898f8f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 376.7 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.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 651a3944813d42f9227db6eb8d53d2ac6fa1aa092b2d87ca68460ab35dda70ad
MD5 99692f478790ba50051fd0ddb168eb1c
BLAKE2b-256 d03f55023b422b9ec3665cfba7e8cab17a31e2400ad2806a0c02cf80dd755577

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.2-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.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74ea01342c06d2d0808286ea36a376e816306abf0c9e15c9af81cc22d771508d
MD5 1b8a16ee6d2c9370075ef311136a48fc
BLAKE2b-256 13eee84fc84276ed717a2ffa36c79f0b89dcf1d72b30d6c1723fc0f676dcebbe

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