Skip to main content

rapid fuzzy string matching

Project description

RapidFuzz

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

Continous Integration PyPI package version Conda Version Python versions GitHub license

DescriptionInstallationUsageLicense


Description

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

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

Installation

RapidFuzz can be installed using pip

$ pip install rapidfuzz

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

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

Usage

> from rapidfuzz import fuzz
> from rapidfuzz import process

Simple Ratio

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

Partial Ratio

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

Token Sort Ratio

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

Token Set Ratio

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

Process

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

License

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

rapidfuzz-0.8.2.tar.gz (371.7 kB view details)

Uploaded Source

Built Distributions

rapidfuzz-0.8.2-pp36-pypy36_pp73-win32.whl (51.1 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.8.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl (85.5 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.8.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (52.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.8.2-cp38-cp38-win_amd64.whl (59.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.8.2-cp38-cp38-win32.whl (50.9 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.8.2-cp38-cp38-manylinux2010_x86_64.whl (657.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.8.2-cp38-cp38-manylinux2010_i686.whl (688.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.8.2-cp38-cp38-macosx_10_9_x86_64.whl (55.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.8.2-cp37-cp37m-win_amd64.whl (59.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.8.2-cp37-cp37m-win32.whl (50.8 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.8.2-cp37-cp37m-manylinux2010_x86_64.whl (660.9 kB view details)

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

rapidfuzz-0.8.2-cp37-cp37m-manylinux2010_i686.whl (692.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.8.2-cp37-cp37m-macosx_10_9_x86_64.whl (55.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.8.2-cp36-cp36m-win_amd64.whl (59.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.8.2-cp36-cp36m-win32.whl (50.8 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.8.2-cp36-cp36m-manylinux2010_x86_64.whl (658.0 kB view details)

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

rapidfuzz-0.8.2-cp36-cp36m-manylinux2010_i686.whl (689.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.8.2-cp36-cp36m-macosx_10_9_x86_64.whl (55.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.8.2-cp35-cp35m-win_amd64.whl (59.0 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.8.2-cp35-cp35m-win32.whl (50.8 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.8.2-cp35-cp35m-manylinux2010_x86_64.whl (657.3 kB view details)

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

rapidfuzz-0.8.2-cp35-cp35m-manylinux2010_i686.whl (688.4 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.8.2-cp35-cp35m-macosx_10_9_x86_64.whl (54.2 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2.tar.gz
  • Upload date:
  • Size: 371.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2.tar.gz
Algorithm Hash digest
SHA256 9b923626a742d946622503ccf9b17191954ae0d324f5d549239931d6e0b9d119
MD5 4e476aae842d7dbdbc885c1638144463
BLAKE2b-256 03572e7da264d64c450a2bb57ee5d03ff0ba7c442745ab8d5846103713d0f7c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 51.1 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 840363ba9ff915d44522cb1f8257c6644ce13d4f8432af44ec4bc9baa764cf6e
MD5 8089eb873e7a47ebfcea145252a43fac
BLAKE2b-256 1b686692c6b385fd13c59c35bfd85154b35c18382b23bc57392a6c28974f63ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 85.5 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f4d474710eeea13b37f4ed10ba9e334378ba04745a7f6e6eb5ff47f6f2e190ef
MD5 83802e9719378cce8e3258b748e4ef5e
BLAKE2b-256 197f504b245959c1fdae2dd3a4ea2f47054f9848e0957e20d70c5812f12a8db5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.6 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8b35d365c4e4430f00b67408ff38e0e1b6c3ac58857cf73e9494692593bc720
MD5 97ecc8ca30e519348825856c4f023386
BLAKE2b-256 be41ca3f6856a0701013283575e8c29364c99f3d3388d19bf2b7e147bfbe7d88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 59.0 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 00f870d81d4c854b5539314c46888cbd996bb54588f0d410118f43c0bf2c9f09
MD5 b9aeae5e0d34ba2d5de4af7499efd813
BLAKE2b-256 0bb7d4385812cb91ead7e34c3bb20eb7572b509e79c0102189b1a64f1545ca64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 50.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2df6f14393d52e41e2312924c0eeb6810fceda8b6e866345d54d2aa1b282dd03
MD5 3c31bc4c8e788b47e73ac369473f5276
BLAKE2b-256 c42bbcdf78919d6910f56f311f9161e33d53e9fae15696dfcdf195a4c002efcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 657.6 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6f9fe2c53ea4a5f682fc41e4650d6c8ae652e971e495548a8b18cba2a2134d46
MD5 e127d2b1e5957db2163b55ae07b2d829
BLAKE2b-256 d772e6c92a2d45f3e179aaa646e620399cedebfdd83cd05c2c297ba66684cef2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 688.8 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 30e9900165a5123a040924c48054205909e238710203d1ebaec76e5e217a4edc
MD5 ffab1d287f9ed6d861868ff0782540da
BLAKE2b-256 916c10e68f8ef462e8752bab534154b9f96e339aa1e3b544b70e655b2847057f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.5 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 11b90dd94106ca84f41f876dbba07111166ae2ae3d9600a6382487e4fdfdd79e
MD5 4e08195d1e0f3155ed6c105f5ab12855
BLAKE2b-256 265e247fbaf75f07cc9f7a164366734157fe6b4050c94d92ff563584e080c636

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 59.0 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 32168942b935885670e101e3c45ab5e91f9dc5847a8027935e5ba47efa887ac3
MD5 2671c2b8be6c38eb57dcadb6645bc639
BLAKE2b-256 2249441824b126d6399b5c1e1e585839c12e58695a57ce38f2e1632ac28b3de5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 50.8 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3e15ec61c7735a1f8b067e4162fa48bd2ca89725a2fdb1e54d1998e9fd2c1cc8
MD5 c75ff13ecd2d4839e62fc373cea2d60b
BLAKE2b-256 e5c07b4e50c344adcc936086625c57ed4b64ba7df2afd14513f42bc2713b15f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 660.9 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5fb291d193abf43fcb7cbe2643e1aa331fac0febcc838c7ccd9663e7dead5ede
MD5 8ecc1ccb803076417acf6161b7e69e5c
BLAKE2b-256 24669c2e150770a6dbe5a53175c2d5303a561ffe4251a8de08d3a24d75ed80d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 692.2 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a3628cfec92294605bf4f69e9a14ebae04ee285ea964815456a78a53f2731a7e
MD5 4acdae84b4aa63827e7baa56427874c6
BLAKE2b-256 219e455fdd5dc0b67dbf1b01e36b9349c392f88c5175aa38b7b388eecb5208dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.5 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f855e61594e5e4b43419da2e5d4803bff45da27aaf90fc1edfff7d627098795
MD5 de8b79059f83ff98842a004561d7c7ae
BLAKE2b-256 7d76c0eb5bc77747947545657b828816fff97e528ae6046fd83e5ef26b3f5c4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 59.0 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f3c5d1a40eeb9ebc1b2baed2192fe89d4736a882d1275829788af8571677ac41
MD5 99cbef9aa68d267d19e8328927b95cbf
BLAKE2b-256 dd15276fce925d1a9d4b315085916108f7547392cc0aae45e84a4a9f9b4a4855

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 50.8 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0d51d50bf5cb126d990c4aaf3c4d9a43532ea63b1b98e252d1b1daf85c3cfa60
MD5 cddbfcd6efe5a1fe03d142258746c40a
BLAKE2b-256 fa03cd1e8a8219af29b45cf5897d966b2f6dde0256e26839bde24ebfe21d6d57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 658.0 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 964a1bf351072cd6154e7a90e69f5950d6e20c3e8bbaf68fda70aa33d56b7250
MD5 e57401286b8708eae5681f3418b259d0
BLAKE2b-256 19b5197521bedb7aefdbf804d88dd4fe91aec57ffd22ce2e7239f61b1d204737

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 689.3 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cc31eb18555c3bddf51d1a5f8110660568a833dc4f7855579a45eabdb3cdef5f
MD5 c60a9a29e098ee00c6a86fed5e8ea1eb
BLAKE2b-256 a91d9866d862e2394dafa2e042be5f6b23ab03df29dcb762ab2519388e441626

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.5 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0c7afcd430499343c6b0a9b81f99150a0b22e5ef0b630c1aa9773d03920d6f3
MD5 7030aaf2ed458615c570c78dddcbb2d7
BLAKE2b-256 182fb178dce7555101f7022f4f2f4a8fb79a13e87b51c8a4eb7a34d46732be99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 59.0 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 447d1bcd5acf9cb2dd1ee528259b573ddd190ab4366ab234f68a51bdc657ac60
MD5 f1ec91d4201f8b17573d0adca3d7bec1
BLAKE2b-256 484cc950c5c70f6a0fc34df4a29b8f49ec75719dab297f0144d0cb6914d96674

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 50.8 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 cbe947b143e9992c113348bf7bda9d1418aadf9eae4e8a24967c14790c589b7c
MD5 21e152ed5e5fcc369272ba65d91d0e19
BLAKE2b-256 f8f151393d5cbac1a326e9e7fa1ccc5cf490705cc49caf9cfa83349fabb12b35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 657.3 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 570c82c53abdabb0a4385433f91c173f37cb0f77780a96bba9afe30cd021ca22
MD5 4000d8925afeaf99725a5e23c5bd6973
BLAKE2b-256 c93bf22fb9a4cdc543820455086d8a8d50b680d7d3bcac3f9a06dceeca5b1da5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 688.4 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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 407c7580e5d15212ba8fe037bb552da644564f9fd19e30af134d4350a2920229
MD5 1e0173f9bb2f1d6c914eef0267b96f3c
BLAKE2b-256 1b28c5842d2d278735a3ef3ebd0605d983e31303e800191d4239ff57e3259d27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.2-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 54.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.45.0 CPython/3.8.2

File hashes

Hashes for rapidfuzz-0.8.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f60c2e8c0382a1adfbcba42f8b1b476af73105b2ceaa95202443dad76ac77e8
MD5 ca6e6bd8577de553ea7cf65c0d5b7412
BLAKE2b-256 ed56a8a2413cb5e6e57ea56baab7d991d524936fa50bb09bae73d3e8bc39bc1d

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