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

Uploaded Source

Built Distributions

rapidfuzz-0.8.0-pp36-pypy36_pp73-win32.whl (96.4 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.8.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (85.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.8.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (52.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.8.0-cp38-cp38-win_amd64.whl (58.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.8.0-cp38-cp38-win32.whl (50.7 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.8.0-cp38-cp38-manylinux2010_x86_64.whl (657.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.8.0-cp38-cp38-manylinux2010_i686.whl (688.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.8.0-cp38-cp38-macosx_10_9_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.8.0-cp37-cp37m-win_amd64.whl (58.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.8.0-cp37-cp37m-win32.whl (50.7 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.8.0-cp37-cp37m-manylinux2010_x86_64.whl (660.7 kB view details)

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

rapidfuzz-0.8.0-cp37-cp37m-manylinux2010_i686.whl (692.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.8.0-cp37-cp37m-macosx_10_9_x86_64.whl (55.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.8.0-cp36-cp36m-win_amd64.whl (58.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.8.0-cp36-cp36m-win32.whl (50.6 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.8.0-cp36-cp36m-manylinux2010_x86_64.whl (657.8 kB view details)

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

rapidfuzz-0.8.0-cp36-cp36m-manylinux2010_i686.whl (689.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.8.0-cp36-cp36m-macosx_10_9_x86_64.whl (55.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.8.0-cp35-cp35m-win_amd64.whl (58.9 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.8.0-cp35-cp35m-win32.whl (50.7 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.8.0-cp35-cp35m-manylinux2010_x86_64.whl (657.1 kB view details)

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

rapidfuzz-0.8.0-cp35-cp35m-manylinux2010_i686.whl (688.2 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.8.0-cp35-cp35m-macosx_10_9_x86_64.whl (53.9 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0.tar.gz
  • Upload date:
  • Size: 371.4 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.0.tar.gz
Algorithm Hash digest
SHA256 d9b25ebb723eec68c3c3abc66bde66338cb5fa727624943ed13f20052ec9bff6
MD5 45c2be0e9aeea2a9bb52afdd224689ca
BLAKE2b-256 9b826a93ec8ed640df0acecf8d600dbbd9afb3a4a7ad871198f951f722a0faa9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 96.4 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.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 09e23f3213eec5d04853e55c377777c08514c65c8555517d6e748e51955a5558
MD5 ae0272a3810df62d9ad0c409a962393b
BLAKE2b-256 c87bff13d1665389deb2ee0a750c9925f6efefe2fb69c87243c27b71e07a689f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 85.3 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.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e53ef1283ac82f19f050b93acb1455f89771bc3b1f0f3a0bdbb0363661d24997
MD5 192d4b33bac14daa8cc4778591608849
BLAKE2b-256 3c404c4a1dc487527ba5fed93e143336a3934cff28123ee0101b60851b2f1a59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.4 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.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5cad5b7158e1d14dff93711af851f8519d6d43745eed0a9292c9946c338e9f12
MD5 990bdba65b69e042348984e5acf7cfc4
BLAKE2b-256 c24a98badbaa67db594e89560d83c006604ba37dee8da554411448bc9aa4f786

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 58.8 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6c7937ebafe35526ab04a484a723ef48c7c3e217f4b0f3bc474b9c18e0dea7d8
MD5 ede22f5f089451459eeca0279934dcaa
BLAKE2b-256 ab9e0b64cb05cfbd51047e8d70808a559d8b663c86c2327bcfb680c8d66db2e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 50.7 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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d987c1ddc639f26f45a56f5c02605f8414682e45ba739f51351acb368f23a314
MD5 907da162aa230eb1439f5e793a0a5e9d
BLAKE2b-256 d2e2e6b19ac4ff27929734138d1dc2d2f7937181223fb227eee4ab6d4534a766

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 657.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.8.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1c23423a807ce722a0881719427e85b17544b88ffd5706f1b55f22ae60294b81
MD5 7222ef09a8eee3bb9c5638822a73b8b4
BLAKE2b-256 daa381299a9c8a6484f6d48d06f7005c8b9150b1acf69c490f9909607af888d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 688.6 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.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0d5855597399d9f4e08b32f6e74853441629caf565a444e6ad0c5d265232445a
MD5 69d18b66f8e55aab152d86c177d2652c
BLAKE2b-256 4bec7d3940b7846e7014304dc0e6a221725c6a994d3246ff46f17e4a9bb94215

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.2 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.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e44603e28bc731e02fe1f201cce2a4c0b0f321a2a7d155f6c62e8632b016f555
MD5 c0533fb8ceede152bad882f17a845bb8
BLAKE2b-256 4c18c288e6d9dbeeb147567de43e011de15057b38362e80fb999f90cbd2acfa3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.8.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ca0fab9f8646b5ec669aa8c21df6eeb970f0160b6742bed06b53d533a7837efb
MD5 ff53e42b3ac086f65799be307989bea4
BLAKE2b-256 708eb10475e618542595d07111d1b1f6b767b791f2892f7ed7be61c4bd3cb661

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 50.7 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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 dd9b21cabd2753b9ab58a78bdd49dba7d717b63d7c5c8d1e857c97cc2d094f4e
MD5 e5923af7d1f9ebbe005d9aab3a37fb41
BLAKE2b-256 9589760a8c1d17f80db8d868ad3262049967ba62d441d9646dd2739d194002dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 660.7 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.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 39dc8218447a263ba09a847a28a6ce23bb69f16f52537b031d1025b30afbf780
MD5 4ae2ffae74f0e1570b15713031ec101e
BLAKE2b-256 c53ad0112b17b2153b6cab21344f6ca382b287ab1ac59d485281e2f23808cc82

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.8.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6ab221b7e7585fd21f4fb8142f3e86e0938769647aac5e5df54ee0471b440f6e
MD5 19dffb21b85fb68a3b316216ac3cc469
BLAKE2b-256 bcb8434c8097c44e0adb29b899ddefe0d4081590fdb8e50ee08ad7dba6d2e936

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.3 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.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 620a100fb42ac2dd5345b3db1c6d7c4bd29267e60d8ac3d407c118681f70d0b0
MD5 db4438f091bc72bbf3937261ca93fe86
BLAKE2b-256 86ac12a82bafb724665cfcecbd3e2eb1b495ac9ec8f51a7ef717ee389d2970d0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.8.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 11794ad86fc5af3a5a896399e1d3983aa9465effe59653c1a8dc4bea4491c7f4
MD5 dd05f73be5d65beaa908ec2b61ae855e
BLAKE2b-256 63b8de90f16226d16028e0ec467740f08c8fd093bcba3c639093832bb620860e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 50.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.8.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9f66ecf8c48ed2a74be0e1a06bf31dea9ca6890522cbfe0f90693e84f14766bc
MD5 909cd800a243a8330db61beb03e6dc60
BLAKE2b-256 108268347bf7187b75d7cd36186944c619495cfe34190cbadce4f2175474ada9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 657.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.8.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bcf3bf859f393bc3cc7a1c7032b8525e70edd5aa1e6cdcc9a14dbf9f7a6d7864
MD5 4bf435e009e9f2c1dcc3d42732d27d1f
BLAKE2b-256 dc459c61f65b664db41e62240901da952225ce9812d5c2107e783cb74f8b320e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 689.1 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.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c516c5028acf90b1fc9b5bc366314a33e2872c2b731743d1d3ee4b40dd763212
MD5 fc07cc53a819cd232e72e483b26db41e
BLAKE2b-256 bb6c2da9fc5bac65af75de7b4ec6d362b0e3c07031738084e3dc941711855b3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.3 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.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 112af23a1c5f636d313ecb0f970f7239487c5cb3aa74423e7182da42335e3dfe
MD5 57ea2004991f673d89cb4d173c8c2801
BLAKE2b-256 850b6eac8ef4c01ee332e44881050137cce892d6e0b1858aae3f3bf60adfce46

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.8.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3a4d7a2d530fa4341d354d0bf98b5f95f10558bc8ba17d62b5b2ccea7defea19
MD5 681af13195572cb8a82f05f297ee5515
BLAKE2b-256 2272a5b442e9788a5c4f6d6e729c1b72ad46ab7bd9d0077cf1618752470d4825

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 50.7 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.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 e62b8f0372f822aabc6645a83be41000baaba0b5f1ea7e67d79c61c5b1f23ffe
MD5 015ec03bb3323a027f3447de79738a0f
BLAKE2b-256 ad50cc39fa981f3aede68b3954f11de6c44e5e97288a2f06c684e43069c7e9d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 657.1 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.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e240a87d0bfc40a7aa165a86b4d4ac29a4da3ab7796a34eb6c4a1f59691994dd
MD5 d5521b59274f29e89ec21541111c2b85
BLAKE2b-256 149a9b3681e534a15ded1fac6ff11ef33658c8305ea3f7beae517bdcf47f8239

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 688.2 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.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e2ee954a7a3bbe93e4ed798006a0205562da4367f3ec5ea1395b2dfe17520d0f
MD5 1f269bdf6201e22f679dc8388a72b627
BLAKE2b-256 ffe7eb405d81db54cd383878481af5ec5243de51918deba0d9ea0874b97ff2a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.8.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 53.9 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.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 690b760d3442c2d36eee1d8e816c8b904367998b0afcddfc50311dbdc348b205
MD5 fa8bc641a288008a9b9fcb3cf258a59b
BLAKE2b-256 7d4fd75a69355474ad99ba5dc3a37ac004e902b40539b743293e0c6165f47581

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