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

Requirements

Installation

There are several ways to install RapidFuzz, the recommended methods are to either use pip(the Python package manager) or conda (an open-source, cross-platform, package manager)

with pip

RapidFuzz can be installed with pip the following way:

pip install rapidfuzz

There are pre-built binaries (wheels) of RapidFuzz for MacOS (10.9 and later), Linux x86_64 and Windows. Wheels for armv6l (Raspberry Pi Zero) and armv7l (Raspberry Pi) are available on piwheels.

:heavy_multiplication_x:   failure "ImportError: DLL load failed"

If you run into this error on Windows the reason is most likely, that the Visual C++ 2019 redistributable is not installed, which is required to find C++ Libraries (The C++ 2019 version includes the 2015, 2017 and 2019 version).

with conda

RapidFuzz can be installed with conda:

conda install -c conda-forge rapidfuzz

from git

RapidFuzz can be installed directly from the source distribution by cloning the repository. This requires a C++14 capable compiler.

git clone https://github.com/maxbachmann/rapidfuzz.git
cd rapidfuzz
pip install .

Usage

Some simple functions are shown below. A complete documentation of all functions can be found here.

Scorers

Scorers in RapidFuzz can be found in the modules fuzz and string_metric.

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

The process module makes it compare strings to lists of strings. This is generally more performant than using the scorers directly from Python. Here are some examples on the usage of processors in RapidFuzz:

> from rapidfuzz import process, fuzz
> choices = ["Atlanta Falcons", "New York Jets", "New York Giants", "Dallas Cowboys"]
> process.extract("new york jets", choices, scorer=fuzz.WRatio, limit=2)
[('New York Jets', 100, 1), ('New York Giants', 78.57142639160156, 2)]
> process.extractOne("cowboys", choices, scorer=fuzz.WRatio)
("Dallas Cowboys", 90, 3)

The full documentation of processors can be found here

Benchmark

I generated a list of 10000 strings with length 10, that is compared to a sample of 100 elements from this list:

words = [
  ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(10))
  for _ in range(10_000)
]
samples = words[::len(words) // 100]

The first benchmark compares the performance of the scorers in FuzzyWuzzy and RapidFuzz when they are used directly from Python in the following way:

for sample in samples:
  for word in words:
    scorer(sample, word)

The following graph shows how many elements are processed per second with each of the scorers. There are big performance differences between the different scorers. However each of the scorers is faster in RapidFuzz

scorer Benchmark

The second benchmark compares the performance when the scorers are used in combination with extractOne in the following way:

for sample in samples:
  extractOne(sample, word, scorer=scorer)

The following graph shows how many elements are processed per second with each of the scorers. In RapidFuzz the usage of scorers through processors like extractOne is a lot faster than directly using it. Thats why they should be used whenever possible.

extractOne Benchmark

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

Uploaded Source

Built Distributions

rapidfuzz-1.0.0-pp37-pypy37_pp73-win32.whl (129.4 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.0.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (363.1 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (288.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.0.0-pp36-pypy36_pp73-win32.whl (129.4 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.0.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (363.1 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (288.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.0.0-pp27-pypy_73-win32.whl (93.9 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-1.0.0-pp27-pypy_73-manylinux2010_x86_64.whl (237.1 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.0-pp27-pypy_73-macosx_10_9_x86_64.whl (183.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-1.0.0-cp39-cp39-win_amd64.whl (206.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

rapidfuzz-1.0.0-cp39-cp39-win32.whl (128.6 kB view details)

Uploaded CPython 3.9 Windows x86

rapidfuzz-1.0.0-cp39-cp39-manylinux2010_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.0-cp39-cp39-manylinux2010_i686.whl (6.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

rapidfuzz-1.0.0-cp39-cp39-manylinux1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.9

rapidfuzz-1.0.0-cp39-cp39-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.9

rapidfuzz-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl (340.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

rapidfuzz-1.0.0-cp38-cp38-win_amd64.whl (206.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-1.0.0-cp38-cp38-win32.whl (129.5 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-1.0.0-cp38-cp38-manylinux2010_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.0-cp38-cp38-manylinux2010_i686.whl (6.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-1.0.0-cp38-cp38-manylinux1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.8

rapidfuzz-1.0.0-cp38-cp38-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.8

rapidfuzz-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl (339.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-1.0.0-cp37-cp37m-win_amd64.whl (206.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-1.0.0-cp37-cp37m-win32.whl (129.3 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-1.0.0-cp37-cp37m-manylinux2010_x86_64.whl (6.2 MB view details)

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

rapidfuzz-1.0.0-cp37-cp37m-manylinux2010_i686.whl (6.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-1.0.0-cp37-cp37m-manylinux1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.7m

rapidfuzz-1.0.0-cp37-cp37m-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.7m

rapidfuzz-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (339.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-1.0.0-cp36-cp36m-win_amd64.whl (206.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-1.0.0-cp36-cp36m-win32.whl (129.3 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-1.0.0-cp36-cp36m-manylinux2010_x86_64.whl (6.2 MB view details)

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

rapidfuzz-1.0.0-cp36-cp36m-manylinux2010_i686.whl (6.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-1.0.0-cp36-cp36m-manylinux1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.6m

rapidfuzz-1.0.0-cp36-cp36m-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.6m

rapidfuzz-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl (339.1 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-1.0.0-cp35-cp35m-win_amd64.whl (206.8 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-1.0.0-cp35-cp35m-win32.whl (129.3 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-1.0.0-cp35-cp35m-manylinux2010_x86_64.whl (6.2 MB view details)

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

rapidfuzz-1.0.0-cp35-cp35m-manylinux2010_i686.whl (6.0 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-1.0.0-cp35-cp35m-manylinux1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.5m

rapidfuzz-1.0.0-cp35-cp35m-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.5m

rapidfuzz-1.0.0-cp35-cp35m-macosx_10_9_x86_64.whl (335.6 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

rapidfuzz-1.0.0-cp27-cp27mu-manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

rapidfuzz-1.0.0-cp27-cp27mu-manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

rapidfuzz-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl (3.5 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-1.0.0-cp27-cp27mu-manylinux1_i686.whl (3.4 MB view details)

Uploaded CPython 2.7mu

rapidfuzz-1.0.0-cp27-cp27m-win_amd64.whl (133.2 kB view details)

Uploaded CPython 2.7m Windows x86-64

rapidfuzz-1.0.0-cp27-cp27m-win32.whl (93.8 kB view details)

Uploaded CPython 2.7m Windows x86

rapidfuzz-1.0.0-cp27-cp27m-manylinux2010_x86_64.whl (3.5 MB view details)

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

rapidfuzz-1.0.0-cp27-cp27m-manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

rapidfuzz-1.0.0-cp27-cp27m-manylinux1_x86_64.whl (3.5 MB view details)

Uploaded CPython 2.7m

rapidfuzz-1.0.0-cp27-cp27m-manylinux1_i686.whl (3.4 MB view details)

Uploaded CPython 2.7m

rapidfuzz-1.0.0-cp27-cp27m-macosx_10_9_x86_64.whl (211.7 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0.tar.gz
  • Upload date:
  • Size: 73.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0.tar.gz
Algorithm Hash digest
SHA256 de177347779aff5be7eec6669b89c13e77dad5f862f2bcb646fd65262fde9a8e
MD5 51e20c2f06a37cb0ac9dc13c7523dcdb
BLAKE2b-256 de1e4a9e9d92929d5387cad87f80b33506d3feea662812b2974b3f2596edfd1b

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 129.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 5e1d6c8b66458e8da21e148afe5c550cc22c2156dc6b211a00cf6b3ec742e73e
MD5 b6a26fffe7b876bb86a4c8c04665ff61
BLAKE2b-256 21cbddfafe448b11f05f140d2b72e2244c02bb58458a61fef72c35c9c227dcb7

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 363.1 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3e9420978ca45c7029902af8e25fff0d7a28cfb391bbe9385e8db713e79f2abb
MD5 6d04e6aa79991f6a55e3f528882a8cda
BLAKE2b-256 8890f724456f13e22173ccce6ec15a22c7c18131cf18554c07d23e6e835b8c59

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 363.1 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 776570021cb2d045faaff35f3ffe19c1a47e4970c07e0c2796baf240b5738a76
MD5 3392847b0116db8810de441d1cade3a6
BLAKE2b-256 47b7061539b603f2eb36c5910f410917bb9a16c4197f35e3e163da2fe0549ad4

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 288.9 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a218ad3d85ff9fa34fcdf5acee5ef94ee2c4c12b568101b7fd2d9ba9739e599f
MD5 9450f2a1f18c87047596e9d8b2c822bf
BLAKE2b-256 d1c01c2a36f5f782d49e42694b74bc959ad0f583da7654ba0a72427d49cf16f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 129.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 21df4df9746741833aa360a4a3494d5f7bc51366b0b366ecbdce020b28d63418
MD5 db91362efee3dfae07bc68893a671f6a
BLAKE2b-256 1ed046edd5a38f7ab2e6b7b0ced7164461d9b6fdd80669afae5b19c1207d3c0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 363.1 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d64207aea0eba38dbbafc80a309417fda46db0031c07a5a7da4f39e6af5b8635
MD5 fd6ca6bd1439ee4f145fbb9e9b85f10a
BLAKE2b-256 a5b21f3b985e82c7d57c6950aaa94c65664d9a32fe95f91279e1c2bde609e707

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 363.1 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 81863e2975e6586a57767867b75593d6816f064c0f8e704f7eeaa757d17f411a
MD5 a943915f3fb16054e1d146e8753bdb36
BLAKE2b-256 06c313b1fae4c9dc8cc1ce8c5f014ac4717d65bffddd4c5686e7e92caf5dd7a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 288.9 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 671820fe15098fe6cf9be8767ad13425941fd778be0bbc95ec5efcd5d2ad4630
MD5 7d89dcc1022af6eecd0bab437d5ab9b8
BLAKE2b-256 b79b19eb1fff34ddab8768fbb07ef9dd3d7b05343e17891e6e24a567aadda203

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-pp27-pypy_73-win32.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 93.9 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 8cda0029ba902065c4c2ae76d06f9275ea6b68dd0f94d3b0ff02c055a34e0ee8
MD5 50238bc3c3bcf18b9763fa298152b435
BLAKE2b-256 3307fc1686e54b911b9daf43f935dbb88655ae780c2c8bdf271bfe1024303b08

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 237.1 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9b8f6f8806d539faac64a48b2f5e617b98a562bdc04c531fb9898f69c5e70162
MD5 fdd0dc3a1b3c9b2689331494d825f002
BLAKE2b-256 683fa2e3aff7acec600cdb3a4fd14196f8a5cdd6bdc85b71900c4d71b9258517

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 183.0 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a0b76ab3725e0921ab8cc5202a9ac715cc67b38a804669dd63883199b059f3f9
MD5 12bb08ee0b9af328dfd7cf38a0128762
BLAKE2b-256 5d48cbf277f6459887146c9d1c6d49e8c28300b4698af4300cee1520fab957de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 206.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f297998a45bca6cfcee3a718426bc9f9d954452dde363c8650079998ae7fb64a
MD5 993a9a998993acf563372daf6e289124
BLAKE2b-256 514430478f3917f572fbf8bcc7340c3cd18ddf6f9cdf5cee3ea388b97a7045c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 128.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a3f4dc5c0d87bdf3e2255db6c10bcae171e4f7bff2ec462271e68206abae01e9
MD5 cc8c08b0895c0435ca644e8c5932714b
BLAKE2b-256 8f5cac8582aa6fe65aa5740e9f49d635dff6bec6fdc1337242bd704d1852bb70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 94d5d5917383e78e0c5fff64c378943bd957dff0b19c3e4352531b4a8bdd0408
MD5 2a55a8006cec80374a04f434c2125a04
BLAKE2b-256 3d13b6942ecb6f13e1718b77adac631c94c474db7ff3dfce3a1f7a49afc41b93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8e4dda4e42bcb93c24d3c02ecbf2ca4a3c621296534bb7345fad4dfe172f3f9d
MD5 404aa70a881918a2fa46c5a551ce8f48
BLAKE2b-256 fb622ce59169d4810c8408017f7a6a9ef5f1a0e21f9452818882400b2b5a8cdc

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 71c563ec4c39cfff86a50f989deaed190fc1ba67c6d27f9d29fe1182e1630fd7
MD5 bde36e6d82e7ee1776581f4204d2ae17
BLAKE2b-256 7fd8003b6fb4a24602265dee6b0ccd6d7eed6f0521c2261c639c453a660f3eed

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 857f3f0b6faec1580a1672ef1f3d50358262d62c07c49525701dda9e9ab5c133
MD5 c605faf4a47749c1a6d099b8ea8c7146
BLAKE2b-256 a842a380ed551f12a6108a3156052a9b943e6dd14557a97b808b7f6eb8d40268

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 340.9 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c66c83b901d84e92c8b9c27bdaeef2ea47ca024d472d10457eb600372f0485fc
MD5 71a4a1d77443690c376708b5a2ee26ae
BLAKE2b-256 14ae3ebd75f7e086c60bb90d4b5f99e51427f15ede91cb7de4af70643611424d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 206.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b6cc687579427190e255cd274890f895849103a759f45b2b7710fa5db596926b
MD5 f6876d69fd1e04a9ed418324b6dab05d
BLAKE2b-256 be395c91fb77c2355c8f2e6dd11b9e2b99e2e715b3e867f2de7b55edf709f187

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 129.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c9d878328ff8d4ea556c939a0c95fa51468b597aa5e8fbdfce187c9e557cec6c
MD5 04e82b2d407148b822f2fe6e582ca2c1
BLAKE2b-256 dab6c01a4afbf6fc7ecf15979d2d36181bc9fc1e36e68cded947a6a213a75d90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 268ea22efa69b5befa67e2faaf67a5db6263172d575215e3da1f6b9592bcfc9c
MD5 72ad1563c1e9a0c5428d14de25fc0017
BLAKE2b-256 01fc69849386db5b439d74c5d9d9af32915224468d9d898a09ca384560a8feb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 281e89ed45e7d5d93a5a405b446d495a481e4a92906d1746b299e923a01e34df
MD5 84fa4e813fe4e8aeb5cbf1d23082071f
BLAKE2b-256 e0b68d737c5ce858f350f966b0b2df1c7fbfe04db4c35069a99e2025cf96f733

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c35ca34f2ac92eece6d47d78e3769e48d5d61f664e87d46e322c79689ba98ee9
MD5 7b9774abee11ce30d405468f043137f5
BLAKE2b-256 ce7abeaa9f039ccc144ade536794496ee18f27251204731fe44d955fe7b2841b

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 632a118098b889ba768b0ae43c11de2a73e8e934af907c2cc5003fa5fb55816e
MD5 d24ce6187c09f724273afebd6d39a359
BLAKE2b-256 b42b380127041658145bed8b2139dbe995d265560cc60b2872fe62ebf1eedb5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 339.5 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4043ed0f2e33f1badaa6a893cc27fd772d7e8445f94603e3cdce995a82a48e81
MD5 ed979c4db3d528fff403b5d82272a43e
BLAKE2b-256 ae4cf656d2af4983b1138fac735ad474f03483b09e07fcbe71dc23ccaf7ea450

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 206.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 64cb867993d83a71cf3cff979e4d48f6c19d287d19cf02574c682c3e01544542
MD5 a634364985ae8ce39f8b8cf9cee4f282
BLAKE2b-256 8ab5288f3f76c7414d9ceea732de1dcd5c089b6ce3f0083e6739792fc616df1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 129.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a8cd1e8c22eb628eca958f8508898c8f0dd0703a6b02a8c70379c4a7ad502d9d
MD5 af52f63071134c9dd6f6b33a31dcf210
BLAKE2b-256 8a237d1aab0ca2b674b4baad5e480f6eb3e3b37fbdb8a844bc0f253c2c834b19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 664634b17467c118d67b89c63333cd0f7dd8acbca2ac5ba0b66ca299253a1b63
MD5 23ea9eec9d031afb270e3e1dd02d67a8
BLAKE2b-256 0016b416f2806dbc042e995a55f9d6b3cb47806abc24bf6fdf415a15f1ef24f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e0b5531dfe7bb46792f9e6df280f3fe06593e57aba80777615b9695df5653e71
MD5 ca53d05d2fbd67fbc5c9eda0a0148ebe
BLAKE2b-256 efc67b5c2e960bf05e6bb586d9f788fcda54d42c514885d239de0d0938cb8492

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c9852e7f0be45f7039b485efca3f80d19c5614e8c3b896e3e86bd1a095704aca
MD5 2c063ac98880e05948d5352c38e399aa
BLAKE2b-256 1d0dc725d680b1df4ce89dfb4ca6f3012ed6fd54280cf9356d7310e8cc4b5b7c

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0050859529e1e531d3e7766b271398d0fe5ab6e377b193d628e6f0dccb51a6de
MD5 a0b6bd16d40d9a8ddade1a2e1623ae63
BLAKE2b-256 9bb668cf4aba53aeb95bdbe513aa48c1b95afa41812972acd4e4a2e22bf58917

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 339.1 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2b305c9f9a3ca325380dc311dbaaa58bdf793ca3d239677596b62f478a19bcb
MD5 26a756cc686ce8f268b52dc088e6a3cd
BLAKE2b-256 a052484305af65d688bd967054f9e0668d861acbd928d7169adf0fcbda888345

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 206.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 44aa59dd02b814a5b5921224975a7b1fea4682b60b14cff1a81e4fd2fed8a42f
MD5 c99ae92a5a8eed15b105a2d558d7f39e
BLAKE2b-256 9539bee20344f7fe5a8b0faf66be5dc254687ef00294d379e2f037c70175b84a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 129.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9ee8f7e47f1d6e93cfc9837d77be7c0c2a81494418fa903c970f532709087835
MD5 c48262d2d27c3701b69b1da351b23e12
BLAKE2b-256 9a800ac11cdd70d77b83324faa5e49b5efa0125e1dcd39137b378c6f6fc68903

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cc6b013b66c91608e9719ec2ceebc44255beaf931368f82e88ee6c686f0be0cd
MD5 f4242426059528d926fff7ad90939f45
BLAKE2b-256 f7b3a66c814662a0c5b6f022fd69ae02514699a6ee5a71fd294f27f50b812ab7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9c774ab8333443ee4d9f70a2206694c2bcc288cd5d28bd0cc3a929683b7164e9
MD5 f6d35a2f11321aa2b27e6c8a73eaca89
BLAKE2b-256 1baa440283df015149b58ce75ed426e0a41b21458f35678f64eb3b3e0af21d95

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 30bd8b19cb4ac83e1dbd075aa206ee93aa546992388d8ed37c732f52690cc998
MD5 82e0139705ab6d23954cfee5297eced1
BLAKE2b-256 6546ee4cab011622b9c886ac53798fb15c3c3f980338bd8a14b4aa2be3b42778

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8d299faa7a3915cacff9626f4ef68bdb9bbcd55a2773bb60a1b3c485ca78696b
MD5 89c87883deca4f7f952639c6275b7e84
BLAKE2b-256 fcd162dde0150949d3aada1cb742633f1d5e1e7173d0e7da9986d0855751f8b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 339.1 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e36f3f19e4902adf7c133e70f1887157ee29dd9f6cd546e895dd5c94860abfa3
MD5 7dff5f0100e3942be286583464a99b89
BLAKE2b-256 bbc447e6ad4a17cc37aca38a0f7308a65428a3c0a4f951d379a71e84cf11bf3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 206.8 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 abc5f74ed222c31777694f881a13b6e42ffd9e6b04a0629f041875c501470a0b
MD5 d188492ea8f14f5fd1cbd53e9000ea9f
BLAKE2b-256 1ff12a9dddc1934b75944769ec2ebb4efd2f24dce79f6627137805815ab5d018

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 129.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 4871476887cb944f2d7ede941872afa466094d1ae939a74c1b71a880a72f9ff9
MD5 b0baa4cba3340a006dfe4c78be1b29c9
BLAKE2b-256 5d6d7ede1742fe08619fc11692f393355b41aa24279fabb2546202bad89f3fbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8ad3b8957680753712d0f1f7bee1de87712cc0afaba7e27d267fa516552e8197
MD5 619b7e06d02f7bc6d56d6a5e9119424b
BLAKE2b-256 13c6e027d3448f5a2bc1cc537c81aa3d0b5bbec1676cb182fb7038729cd9b1d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 26dfa1599c4b41091d6d583335b232339266ae30343a7fa7850ae4ffefe58601
MD5 9cebb5104ba8b11c38f0a103c8aab598
BLAKE2b-256 0604ea1a85efa7f02b664f1a02d0e8ed51b32a073686059697eeaec8eb0b2058

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9b3d69ec71d010b68746059242b205dfca5f33bb619fc25a4464ab324377cb08
MD5 c9c6d60e29a5545058ae23fbe2cb5c9d
BLAKE2b-256 b96359e0c5aff19f97c604fe60accdd66aa6c6f13ee2db5beb92a66952b618f9

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3e78dac12027f31bd25a7160b9c306ce588ec1a6025b3149f77d0a7c68f53e7
MD5 adbce90f2a787ae4c29da55a4859f50d
BLAKE2b-256 d3e2216454c7bc9d52b927e57636171d56356287b8f4c7a20d1bfc0ac05e7b2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-1.0.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 335.6 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 263e3a0bf0bfadf81f58e3f160a292a5d359c641e643a3477ce557a2e568ddea
MD5 8e8ece857cd6f4b5f67f4cf7188c91d7
BLAKE2b-256 3f82cb520a5075e6726b12e896d128d0998cd5c59ab1c7de4150904059013474

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4acd292e276fb526e338bab69fc4f039f4c5cc2fe484880ada24e80c75e7450f
MD5 b64e3d7fec80131d707cdc2c6fa95cf9
BLAKE2b-256 3a4752d347076ea7af53a5bcf624e090b409a11a8f33d2f059f6ad79c84ce436

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 edfe8dafa01e93d189309fd0c5964bdedfa1d52548577dff51b083cd60183d5e
MD5 50f18b6a7f6653cec7902143e86b7204
BLAKE2b-256 44476209e131a5e007741fb9292e5d4111a01568e93529d44c11e1124b6363d4

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d855212a564267d8ba0f07a25b62e39c4b12fc6720afbe86b53484c03c151a40
MD5 3c82fc875a4abc8b80fbd5f8a097fa7d
BLAKE2b-256 ccc59b7987e33df424577b7e809b08b5f550a3768822ed3ca4efc826234317ce

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e0bb535af9f0f946caadca316674d6f163fccecdf3348e93cd04a22dda9a67fb
MD5 85683853eeb428921889bf4ce60efebf
BLAKE2b-256 b1ee950c4931b2408483f53ee8d78d972b78561db569e2db3aaf05608e067a9e

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 133.2 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 3506b89b6edcf9beca006e6eae7818ad8e8b0685af6a4a4f5ebe33fe4224d356
MD5 692f7d2659b319317e9f41e78b63a368
BLAKE2b-256 ba53d3f3463c9683d98f83d020722f571a089e3fc902cc9393512597eb39172a

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 93.8 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 5faf89494bd29a429232ce39282cfc5a27b27df2461d94be5d6f33c4116a8239
MD5 498865d4827dadbeb587e9b357dfef4a
BLAKE2b-256 df67c0a6d67c84b47270f6038d6b022f69445bb32af7cedca8ba5709e71a3ed6

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dcc575f7d30004715e028b754f68ddee33423a9f2c36a45eca460813fd5d158b
MD5 1c25dcb96283ce9092bd21fb81a7196f
BLAKE2b-256 21994550e39a268cac8596aa998471b9d7fc5d4b6da1fff214cc973e83d42cf9

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ba5de1e66da8b658534d939e6e13fcc37e4047bb2fedddfc951cfdea53a303e3
MD5 49bfb521c386178816d7b46789dc7805
BLAKE2b-256 46f74e01eb6d85593c2cdbe4b7c7708fc22e78f8fde44139a8bcc7d04cb1a9d7

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 08a17ae432483e712c0f2276b9cd3d21a040b7dc662629e5904865bf15d1f189
MD5 87f8c9385c11621a9e254c4b9d67e2c0
BLAKE2b-256 943a0eb6eff50ba58e8dd511712bce72c2abee1483c31200de78baf59f2637e4

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9b170971bed8de939cc5762e71b3f7c5eb08a7d9a3c5d735ade555b4cb3ce0a1
MD5 c1c4574df471ea48b5e9bac888ed7925
BLAKE2b-256 d53f9eb617c55abbbbf7ba160c1a1bb642136af0123623a8cafaa43e66f7cec0

See more details on using hashes here.

File details

Details for the file rapidfuzz-1.0.0-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-1.0.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 211.7 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for rapidfuzz-1.0.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0efc96b2c3957d8ee1d5cc26fb80957f8c7c47fd0fb22ae200d0678f63e80be0
MD5 d8d5fb8be5637cd931ce7fe2136c7acf
BLAKE2b-256 85bd12877aa5c43a4ebfb8e8ab88765246b6de2ea4015f56e2a683c9fe3ac911

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