Skip to main content

rapid fuzzy string matching

Project description

RapidFuzz

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

Continous Integration PyPI package version Conda Version Python versions GitHub license

DescriptionInstallationUsageLicense


Description

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

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

Installation

RapidFuzz can be installed using pip

$ pip install rapidfuzz

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

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

Usage

> from rapidfuzz import fuzz
> from rapidfuzz import process

Simple Ratio

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

Partial Ratio

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

Token Sort Ratio

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

Token Set Ratio

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

Process

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

License

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

Project details


Release history Release notifications | RSS feed

This version

0.7.1

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

Uploaded Source

Built Distributions

rapidfuzz-0.7.1-pp36-pypy36_pp73-win32.whl (78.2 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.7.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (213.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (113.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.7.1-cp38-cp38-win_amd64.whl (69.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.7.1-cp38-cp38-win32.whl (58.4 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.7.1-cp38-cp38-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.1-cp38-cp38-manylinux2010_i686.whl (960.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.7.1-cp38-cp38-macosx_10_9_x86_64.whl (117.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.7.1-cp37-cp37m-win_amd64.whl (69.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.7.1-cp37-cp37m-win32.whl (58.4 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.7.1-cp37-cp37m-manylinux2010_x86_64.whl (1.7 MB view details)

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

rapidfuzz-0.7.1-cp37-cp37m-manylinux2010_i686.whl (963.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.1-cp37-cp37m-macosx_10_9_x86_64.whl (117.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.7.1-cp36-cp36m-win_amd64.whl (69.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.7.1-cp36-cp36m-win32.whl (58.4 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.7.1-cp36-cp36m-manylinux2010_x86_64.whl (1.7 MB view details)

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

rapidfuzz-0.7.1-cp36-cp36m-manylinux2010_i686.whl (960.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.1-cp36-cp36m-macosx_10_9_x86_64.whl (117.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.7.1-cp35-cp35m-win_amd64.whl (69.7 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.7.1-cp35-cp35m-win32.whl (58.4 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.7.1-cp35-cp35m-manylinux2010_x86_64.whl (1.7 MB view details)

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

rapidfuzz-0.7.1-cp35-cp35m-manylinux2010_i686.whl (960.0 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.1-cp35-cp35m-macosx_10_9_x86_64.whl (116.4 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1.tar.gz
  • Upload date:
  • Size: 103.3 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1.tar.gz
Algorithm Hash digest
SHA256 ce8f145be5d1e8460bbb21308214c6d7535e00dd223ecb788e65cae2fe9e4306
MD5 619f250ad6a85812c1a5e07e7cf942bd
BLAKE2b-256 efd2bccf4e7a7208fb671549acf820c7aa6cd202226ff17ed485b35b3f1f0907

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 78.2 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 7082e01413c1871dcbe6d8d42fc29bda6201d9fb7595dfdf699d675e2fb2eebd
MD5 05b02864694d85ce4bc388cdca29e021
BLAKE2b-256 8cd3fa14bd6830accc829ae093d687b589f6c5394f57d5ac269db49b1166ccbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 213.4 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4cce4061ea7d6b9a8d64766bc33cfb87e3de41c41e33367328fdbe02b8cf97b3
MD5 0244184224d1fab22feb9b5dace5d17d
BLAKE2b-256 3635da77989f2345d3482e0306e0ca53c56c571ff20f7939f6c8c81e2d48bc32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 113.9 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e8cf47dfc8a394e5d1800cbd5bbc77003a102b6cb822d6d5e7175a012bfbb878
MD5 d1d36daff8e1f8f7c1c03a39c3a8e747
BLAKE2b-256 7f8d6cfb354c34561472276aa569b88d66792e2023d2624abca5b903c5f5cbb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 69.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fdb1c1f39d9da1f08698bbf1c43023134fb12077d79723ab1704e2661e169a95
MD5 029990aedb31dfd1a87a46bb0268af99
BLAKE2b-256 0f35664052bcbed1b925c511aebe7a96c0ff561abd61257649097f2004d084f1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bdc77091be14c9be2340622c04c127b6fb74b6ff4003306370097ded6c389da5
MD5 144ec20be60661de287138589228735a
BLAKE2b-256 e1a8fac1e65ba684777f309695199cdc014ccf102d3eac6b250125800ef0e18c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 662fb89e35d63ce415a57c40bce65ab32791806e73df050aa973398a42de3ab2
MD5 36ac8b90261f0dcf979c1ca95a638c53
BLAKE2b-256 b729dbc65d547ef7cc0c3c216a4bedc592ce4404fd576dc60b7e12f9179966d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 960.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 67dc87fc53cc36d6299cec0a88eb054582c4fd9b06112fd6072809dfac5c0801
MD5 51eec6fafc67a6d9dd109fa084671d0e
BLAKE2b-256 6909cb173b87d05e6ff66c6a8f68df25b6f82225b2f66f445287427f479547ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 117.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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c57dffb28a3e2ca390b8d4720424e1cb0d7418ac8417fb8a908cc245e6c703c4
MD5 149c3d97d12d20dc7c7ca8e90e07d0e1
BLAKE2b-256 11cded7faf225e7514cc4b8a0c63933e072cadd42f80bdea20ff1657ea1742fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 69.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 55769bd7a519e2955e3b8c7a085235d8f1e5d160d5c08c02333f12c9e1edafbe
MD5 23ae7090c1f9335c6935a8cdd03aac78
BLAKE2b-256 192bfcfcc1bbffe36c5f6c32fc3fca3c6842dbaaac8b966ef1a9431fc5b6d09e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 58.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9244a5aee88959d4c5b48b9dc981e74ef01b5136c240eaa48040d199e100bc15
MD5 74b79ca008d5fe4c436cf343d40e44e4
BLAKE2b-256 c40124cd49860d8ad3b1508f47ce79930e15f59cb25782b570523f7345baacc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0348138f47107813c63edd7f8f56b8f9c23c34e71d2d44ec162de49f545d9618
MD5 450b24e6e19f10ddd03fe10afeedcbe2
BLAKE2b-256 b4a9d199f170a94e9af185f7fd3c214db8e18ae5ed5b2bd5ab2536d852afedad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 963.0 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 41a1f44cd27fb04dac02cae99dd4252a64d530a8a776cf96402b0d980bac98f4
MD5 fcdc13be1ff7c1226e109719af8a32fe
BLAKE2b-256 f09a9aeda9fa509bb7a4881b6efc2608ea8c2fcf7153c622a85b5448deb9bbb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 117.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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a803759e4d7d4af4dc565535efb38019461f1ee38ee97b2ea91e05e0c96df5fa
MD5 ef9be1e9e9c3d74a344ceb3d5a5c0d44
BLAKE2b-256 558db6a89edeacc78f2985a3f3de76d33da11a64fe3d59aaffbb83b466d50ffd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 69.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7ec2ed11dafa582ab45d53ec84701f54e90df00dd53fc06c4a76667faf096a05
MD5 b65052943d35e49fe05cd2db31add7fa
BLAKE2b-256 99635dae95b789305ac4fd776a4c06ad785778dfafffa8af72fa36d689a5f75e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 58.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 acc362e025096564990904cdfeda7615dbaf441804f11b51131147ea99b5c053
MD5 e80cb65c66b0f63f89d6259435bdae4d
BLAKE2b-256 30a6101a2fbd5526064df655ac75dd6985640b533ab9c0ec697e81f219fcb88d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9886204f6d8e1962033e5b0199f610be413b1df85d4511af1e5c12ce421d2b0f
MD5 3fc13b5a9d9afb85e6a0e589026fa982
BLAKE2b-256 ef7938f49e3593f13a01441e9db6dadad85a7ae0fc084668bfb4e605882359fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 960.6 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ef099ec5ac0a240c2d2f35000261caae4cfdbc02ea4505df36febb5e63f95af6
MD5 4d9c5663d402ed429bf325d3b16a9598
BLAKE2b-256 665f7cee7b23f86f032932ea8d63056c85c8b1abcf5e6a29285618e16931b847

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 117.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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e573c401a25db4e19c809d4ecb01c973edc9425d8b9ddaaa00cf92a68094049
MD5 75546dc5e3f767027d40958c4f20a429
BLAKE2b-256 901b1abff1404193ef9d467f49e3b9cf6e5b7fd8971e65e6e02b138eb1befba4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 69.7 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 6979846d4987bbedfd33f18a845134be9cac1fdd0b3bba56f24f87e22da7c4db
MD5 b9ee5809f08605654db0d766d3a71ba8
BLAKE2b-256 6b62005727c6cbbf43a7993c03c781e19fd4f8c5757733ffabd5b6e878408bce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 58.4 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c11d95ba9eea5c81cd9f1cbe9bead3ea255a3161dcef1da645e26457f6f9f52d
MD5 f326cec8379dd84cdd11ab995e239903
BLAKE2b-256 28d7779da21e89510e2c820ce9d20088bc5c235bab394b356144f2ae453f7ee9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e86aa0422eaa4bd9041344f14d0ffba6adcc584941fa92c29b5e3f41ee06337d
MD5 d6a1888c0948dc0aa7b00dcf8bb832f3
BLAKE2b-256 69e714c271855649b5e843bb12225aee401a8e54dec1694f1aa2414c59b469ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 960.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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6f59b07d5734d9f7cbc439ce02270ed524c70dcb73548ed62e7907cde589967b
MD5 7c2730d3fd8972bcc53a364779a628a1
BLAKE2b-256 d4a798aaddc8138189481e89b8616a61d6d1466a002eb007c965a88176530431

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 116.4 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 43741f8f5e3b5745c4bce1310fd36bc1fd34e291714a43c5ccb7de8058d4d9ea
MD5 acdd2c2d890c791acfe1055f1e860f1a
BLAKE2b-256 82e3711a4a473fb810f54717f86a2ab37e7bd9e9fbf3ceb3920690e8d2e90c2d

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