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

Uploaded Source

Built Distributions

rapidfuzz-0.7.12-pp36-pypy36_pp73-win32.whl (91.6 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.7.12-pp36-pypy36_pp73-manylinux2010_x86_64.whl (87.2 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.12-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (52.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.7.12-cp38-cp38-win_amd64.whl (58.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.7.12-cp38-cp38-win32.whl (49.6 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.7.12-cp38-cp38-manylinux2010_x86_64.whl (687.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.12-cp38-cp38-manylinux2010_i686.whl (679.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.7.12-cp38-cp38-macosx_10_9_x86_64.whl (54.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.7.12-cp37-cp37m-win_amd64.whl (58.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.7.12-cp37-cp37m-win32.whl (49.6 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.7.12-cp37-cp37m-manylinux2010_x86_64.whl (690.6 kB view details)

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

rapidfuzz-0.7.12-cp37-cp37m-manylinux2010_i686.whl (682.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.12-cp37-cp37m-macosx_10_9_x86_64.whl (54.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.7.12-cp36-cp36m-win_amd64.whl (58.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.7.12-cp36-cp36m-win32.whl (49.6 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.7.12-cp36-cp36m-manylinux2010_x86_64.whl (687.8 kB view details)

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

rapidfuzz-0.7.12-cp36-cp36m-manylinux2010_i686.whl (679.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.12-cp36-cp36m-macosx_10_9_x86_64.whl (54.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.7.12-cp35-cp35m-win_amd64.whl (58.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.7.12-cp35-cp35m-win32.whl (49.6 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.7.12-cp35-cp35m-manylinux2010_x86_64.whl (687.0 kB view details)

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

rapidfuzz-0.7.12-cp35-cp35m-manylinux2010_i686.whl (679.0 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.12-cp35-cp35m-macosx_10_9_x86_64.whl (53.2 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12.tar.gz
  • Upload date:
  • Size: 229.2 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.7.12.tar.gz
Algorithm Hash digest
SHA256 72baf56af0594c86cdf475d2c984a8558d33721d7063e48f158b3b5019ec7f8c
MD5 2acc6ed8ba79fda0a427be070cc7245d
BLAKE2b-256 46fe3d6ed96cd0a5bef8cd501764754559a8f77d3e6e9a778e181cdb5b106aa2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 91.6 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.7.12-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 7df224af50731ceb653d2340c81d1de4dfa1df127515225974ed294cfd6018db
MD5 3630d31745bf878d9f024ee6ebc9b7aa
BLAKE2b-256 648fbaeacb437cf4f83e276ed2a0ee7413db9dfcfa0936be5ae4114a8418e680

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 87.2 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.7.12-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a6ce52ab53867d2fb0430c0d43d66dff79ccdd930b019826eea61f9b7d7bdc39
MD5 a2e55315584012a16b279d68f15952f3
BLAKE2b-256 58ad3d89614a79ef03d6fbdf76ca5c4089d7f8395149b0aba561c6dc70de7095

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.1 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.7.12-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 907ea389763ee428aa8fee85b5f5c8c1835ed82458d3d36d8afbc07a8990e3a4
MD5 818e2ff25f545568370c181988183b5e
BLAKE2b-256 373aa2c2615e0b7e107e1ed683dd1f39b7a687d680437793ffb695f250cf7e0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 58.1 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.7.12-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7deeb178992308b7abd414d1d6455c1e894aef7d8aafa1583e05d3c162e08e05
MD5 2fbe47c30239ff197fac31a8a6348e2f
BLAKE2b-256 48ff1f8fb6fef2fc08c8d892b0a26d17c3c1f4ce5f732f9f1b96653930f5891d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp38-cp38-win32.whl
  • Upload date:
  • Size: 49.6 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.7.12-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 21435757d4bf3501de084eea9c72f41d6bc3d8c9632a51fffd8cfd4dad07d8e3
MD5 bfe04ee56b5b00a7e94af768eee28ea1
BLAKE2b-256 c96af1cc2e3307c387fdd0ab6e0cc7cc4040de8eacd244db71d8bd61b5291e6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 687.4 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.7.12-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 034c3ddf736d02c9312e593b01c2832a706d75f22db015008fc850f8f80d485e
MD5 83f3eade12a026ab093c527bc524b240
BLAKE2b-256 7214174dcdc2bfba8dbb7ccb8dfa25c709d1c4c6f93d93bb820d1b24dd8c3e6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 679.4 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.7.12-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2755ab72cc72e3784d51524182a9ed3bf0c928f12e049be0a1240b77364b2b44
MD5 62c82a2621b0c88c368185687d0cc879
BLAKE2b-256 fcb3c732905ed875cafff04e97b3eb33516e42baa93fe09c1b87af648927b1db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 54.7 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.7.12-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a097efb1ad4564a7a4e754f3812ed3ce3b44caac1dd6c35b617384f89118828d
MD5 fcda108e8c53f05a89d252e52b714e1d
BLAKE2b-256 7575be3b15378aface56b831072c1482c1af5a755b4e9ed5d6fdbcc38b1b73ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 58.1 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.7.12-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cd48d035270e4cb05de96d55247c91039191e3cfa2ef645d870ccffd5580e5ba
MD5 88c9cc100ed5e75746d3510e3039031b
BLAKE2b-256 70f77fa2f72a60143d35d5357533d52237a0e2aed80c3cd8684de681e5097663

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 49.6 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.7.12-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3f7c7bef9691efe8aaeb11041025e1953927a720183860165a214b3cd127fd49
MD5 962bcb62fead714e549da9f890c1ea4f
BLAKE2b-256 5e13fb3a393433d060d06d96c996f88b38f5c08d231497e7ad4ae74ffbf43629

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 690.6 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.7.12-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d0ff997f842e518863f56a1291c0052875ce5754c6e212a12af7d9533eaa2dfb
MD5 50195ea5d35cd2e9f7edf6cb7ef4ddb9
BLAKE2b-256 b3e2e58199bdf5effc9d78c9a3682a6f5115a3aa37f61555e3cd91141415408c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 682.7 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.7.12-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 60f07337cc31dfc69763fb3a13b59f4ecc03294c2c58a7cf3ced4ea456634f35
MD5 d61d121b33c2c9b88325ef0b7e8807af
BLAKE2b-256 8933b47cee81fc922edd44f1a84c7d4591a5ccd56b600e3532c11f1d945983fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 54.7 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.7.12-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09e08cca23824b6102385aea1734adb6c1453b4fa6913cabd5f21a149624b5ce
MD5 641e0f7a25199473ff383727a5bd31ea
BLAKE2b-256 28e2280ccc2b281d04297b31b14b316ae81ea0a3c0234485095754c4c441bc3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 58.1 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.7.12-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2cd9d403d952ec0d44409cc6cba6e9f7fe4dd426457e2254de5d054498d75da5
MD5 a7bc47e4fe30e0388244ac6390dd3e85
BLAKE2b-256 0b87ce89cd9ff6e21287526c02994bbc3d4c08a8556b87c6d5ccdc44bddab7b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 49.6 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.7.12-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 51e72e7526ba5ed82d1213e923f9b426fdfc7845b6b45e90a6c887bd1cae7e90
MD5 5030b23750b08ca365ce01c1357da19a
BLAKE2b-256 95958c1457b50d5392ea0c84224e2b4ff59823c3b8c20afa666e28c12459e10b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 687.8 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.7.12-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3109e7534a2e495eecd007ba05232c4cf5792f2aa489cc80a4ea76e5d22cbf64
MD5 6d7d9ba8de3c01b2d0c9c8f4c46cfdbf
BLAKE2b-256 e8edefd2042ffc739b6a7814083319493aa531cfc77d7450613c2e665d1b2128

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 679.8 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.7.12-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1dc07f29ea09bd40e56a9332f6f92a2ea1031637dffcbc41016504b9516b156d
MD5 b6d7443133abc32e7ac4d7963574241c
BLAKE2b-256 288bfa6327b13f0c34a304797baf47f8c8da9a8e858f9244f6abcdb726845f32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 54.7 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.7.12-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5fda8fe762e80b6056c209c70837d0d8beb20be22bdeced298b3d677d4872573
MD5 e81958393fe8bad69052d8eff1eb7c41
BLAKE2b-256 ef7f834fafa9e26cbede27629be83daf61eeea31d1949e62c7334beed637dd14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 58.1 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.7.12-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2c331ecefdc42891ffa19b1f98b8a128c75f4f7d4fd26bdf93509a6cf258b07f
MD5 efebcef03fbb77adc988c39cc9a9be5d
BLAKE2b-256 0494f107afa308e0e2af62efe97e26d69adb2f9751ad0538ed2f140f30208059

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 49.6 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.7.12-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 e50dac84f92d372e3f0dd0f726d1ea9a49b8239ad5c61b7c31b8dc543a255d2b
MD5 2a15216a9959f9633fbe316e99647087
BLAKE2b-256 5bc88676742c6154fa8447cfc548956885af99a12492f6fd65c8783085dc8a88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 687.0 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.7.12-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4ca3639c94c5fc0f4492e7fc60ae40a6cf05768cd2bd4b5ccee76c1735310449
MD5 4f150ee60d4b1b0301c0709be7b7eacb
BLAKE2b-256 5489df6c446d66be7ada3fcc29fd901448df75afc3f7fea107f42497338d13fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 679.0 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.7.12-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8d76f64f1f5ee96364b7b52f22b1a242473965bdad5a5f8752fa718d234ec27e
MD5 6407bfc055a3a5eedd6290e715738bf3
BLAKE2b-256 926c8853f3ee1a89a84873b814715bdf7c4028d29bb6fc2cd642f7bc3142e9bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.12-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 53.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.7.12-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64bcaff58ad63029e2824712809d3c0d8749f36c207b7dd4d010ce73a32d933a
MD5 4fff2bbb6e5a43c27218218a89b28cb2
BLAKE2b-256 48e116bedda5f3fcec7790511db1072b4a61b55a6f5154ad54fd925f50b56b2d

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