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

Uploaded Source

Built Distributions

rapidfuzz-0.7.7-pp36-pypy36_pp73-win32.whl (49.5 kB view details)

Uploaded PyPy Windows x86

rapidfuzz-0.7.7-pp36-pypy36_pp73-manylinux2010_x86_64.whl (87.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.7-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (52.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.7.7-cp38-cp38-win_amd64.whl (58.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.7.7-cp38-cp38-win32.whl (49.9 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.7.7-cp38-cp38-manylinux2010_x86_64.whl (691.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.7-cp38-cp38-manylinux2010_i686.whl (527.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.7.7-cp38-cp38-macosx_10_9_x86_64.whl (55.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.7.7-cp37-cp37m-win_amd64.whl (58.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.7.7-cp37-cp37m-win32.whl (49.9 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.7.7-cp37-cp37m-manylinux2010_x86_64.whl (695.2 kB view details)

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

rapidfuzz-0.7.7-cp37-cp37m-manylinux2010_i686.whl (530.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.7-cp37-cp37m-macosx_10_9_x86_64.whl (55.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.7.7-cp36-cp36m-win_amd64.whl (58.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.7.7-cp36-cp36m-win32.whl (49.9 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.7.7-cp36-cp36m-manylinux2010_x86_64.whl (692.1 kB view details)

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

rapidfuzz-0.7.7-cp36-cp36m-manylinux2010_i686.whl (527.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.7-cp36-cp36m-macosx_10_9_x86_64.whl (55.4 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.7.7-cp35-cp35m-win_amd64.whl (58.4 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.7.7-cp35-cp35m-win32.whl (49.9 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.7.7-cp35-cp35m-manylinux2010_x86_64.whl (691.3 kB view details)

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

rapidfuzz-0.7.7-cp35-cp35m-manylinux2010_i686.whl (526.9 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.7-cp35-cp35m-macosx_10_9_x86_64.whl (53.6 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.7.tar.gz
Algorithm Hash digest
SHA256 80cb1ec0356d8e3a29bf3cd8d8f1f9d42b9ca28abac9c4324209fcafd2769567
MD5 a131c7d0fb4bb2c03824be9e06b9a6fb
BLAKE2b-256 dd599a0716d7ca8a03ae2cae0d922122fb0c730b79d71babd91244e8e4c163d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 49.5 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.7-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 800ab593413a6246c62d2ad177a4a1e25ad43be23ac5839a0ff72f1ec1b834d1
MD5 ec9103f240b81222573746157527a503
BLAKE2b-256 32c39286b979b6f05cfa7cb6a34654d39d077f703f93f14d09154d22736e932f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 87.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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.7-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7b6be4052c531b500a041df5e6a069e6bb5e0e4918b9a1a30d5f4439401dbe3b
MD5 fdf613ca71c7b0975091799d85b2860c
BLAKE2b-256 7034b4ca93be1de188f85be37cc44ce825bab8d30d2c5546281e21b2300c0d4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.0 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.7-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dca1dcdeac73db8e20a541ea2abf68db6ad47d8b320873321c9d618f21e24506
MD5 1ea7a8571e40f2723dd142acc2b41fdc
BLAKE2b-256 85fef681c7df9d5d210fad80cd00f980d6cec29601fee653ee47c3b344a711ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 58.4 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.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b18d0add2356c2658878949e3d5fc54a453384cd1a899dbf0aafb4e57ea4308c
MD5 c8c391a988f489a7f40c82a209c37ab2
BLAKE2b-256 19f62374bdca20d4a309e1b5726114c3ca3c1aea86f3c97d34a3c477415a0631

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp38-cp38-win32.whl
  • Upload date:
  • Size: 49.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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d5f32c985204463fb430ebb84ab8be57eaf544bfa9b4ced6ca989be9c71f83a0
MD5 f14ae72cc328a5322139019b1d157de1
BLAKE2b-256 e804b15d506419bca18a56cff40f3134f4b04047da4b502ae0c0979ff0bdeb53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 691.7 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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.7-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7fb0238dcbf979a91281e92339662fa5cc4edcc9978ab25a237d3eeac0c41f17
MD5 b1fcbf648b1f2434c2a8d17d9db98fc6
BLAKE2b-256 f8b1ef63e35bdb90ef43d86ac01c03585aa9b238ac53e000c4ce0e5007aed48e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 527.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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.7-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4632ce924a20d053c262459b86d6ab383cb20cf205f9976db6694dfa02153f0c
MD5 be14166c68edb670027e4049d00abe90
BLAKE2b-256 c214df71f05e51b1655e16c7c879eec6965e0e0d931e93b092395e919127770e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.4 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.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f046db40c5babd556fcf1eb446af7d5c58d8678e06e7e832c7f9b07c80576428
MD5 4a54d0e4639e10f12b461ccc75121c67
BLAKE2b-256 d67e9f2655c9f70abd18208bf47b96c0f41346766d702ad9225d642b70f48cfd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 58.4 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.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6e28212231073764094f142c76d6d182563ee9ac47507663ef1ef0ca74a47f24
MD5 d60e8a90106047f41cac96b4d6ce38ed
BLAKE2b-256 af33fc4f5299d00aeaec44698de93aaccd0bc074c46dad705cb2634fe802a324

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 49.9 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.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d5b8570be81ca14f9e8e9d128f969e719f08e796daf8071f509e5dfb52a86fb9
MD5 f81789109bb4c7cb595a7f6d7ffd2225
BLAKE2b-256 9ab0d0336298a9434cabf795d4ea6f94277866d4a0522cd5f38ac12703813df1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.7-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ec33f34a1a1d889975a36e5cc1a2c5e53948342f485eb7771219c1ccbd2783b2
MD5 d4822afe206f8708d59ec3173ad0a848
BLAKE2b-256 0c4c553ccf56e0f2cfda873b3da4f1af933aafde4c1276c37700417bf59c5ec2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.7-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 51ce5eb70bc4f56bf3be395d440a6019df644823cbfd712b7ec7fb11979eb1e1
MD5 316b348c5d3ed2252f7dc13601991b13
BLAKE2b-256 d2bdc7445c8227dd0b3bca79faedab8d9afd542889fc4d270ed0cba1f01f6ecc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.4 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.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ea4b9d4d26bf473c0e2655cc6829b07e1d73f720aafe63c2706e44728a539c6
MD5 49b202441712cf2dfa64ece8276aafbb
BLAKE2b-256 34efe5357e5f8df428aa744d675b2e8a2b34da07fbfd9a9c79ee2d4911ba6994

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 58.4 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.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7979defe93de5470379839ad8e79b0be41349fe93e4a356f9bb69dde6a99d532
MD5 95c438220f492749327f980172dee6fe
BLAKE2b-256 e14ad2078eb54902e353eb434d2d5c5fa0b62bb9be9e0326e9fb849afa88a88e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 49.9 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.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 eceed98bcadd9e81214306e3f83bb011c3c0eebc3fbd371d6b00d22d45be33f5
MD5 dbfc395b0a26744c10ba16ca3011d117
BLAKE2b-256 3cbf1fc5a10eab13ccab28a3f3c413a918bb6386cade7a2fc72a6ec0e7090176

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.7-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2cc286acd88152b1bb372f6815c3c6a47baeb1ee94f1019f443213683573ed5e
MD5 c6f195ed72f7809405e83cca743ef709
BLAKE2b-256 6993715255c284be2a0e94e4b5f6b67b2782a4e635f5240a7de4f5061b2b36bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 527.7 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.7-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7d8ceee81c7824064044629d66fa0260e5df7b867a903bffc238fea4782d2b6d
MD5 7f5048e507a53be36b7126ace87bdd14
BLAKE2b-256 a3f5bbeaeb8a687ccd6f83e8e607ccfb19c0fc56eb01b200dcd93bb541703f70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.4 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.7-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24c59f629e9679e1a52585efa3d4f15c4a67c3ebe46ca72e72f164afc5f1bacd
MD5 dafc9dd1dd9608cd9d7826287785e8da
BLAKE2b-256 367818c744a3382553d51f2931e929b66c89b1c818444f3a615e1e504ce08501

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 58.4 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.7-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d96a4d95ba86cf94b38a54294ea1699088c091d36b4983dd5b32f86fa26486c5
MD5 7fc3ea1d7b8f04cf46118de58d812028
BLAKE2b-256 ecf6bfa80883a2cfc65a70cfcf5aa220ee09439b386f710a3a963aaa168a771a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 49.9 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.7-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 bd79c8caa595ba740afa1577a5d61b20c105c2a97c3597304de5875768a129f5
MD5 909f3ca1fca9b4c8e079fe40784cbe6e
BLAKE2b-256 122ee49e06bd08a56cfa3534687a4d60ff49704ecfa43cac40fc7161b5773636

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.7-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7efcf2d0711f8f1f850dd60aee5ae9d19a1dab6da1bc35ec919267fcc6d0b080
MD5 9fd845dfa871f33c06060787e506fb2f
BLAKE2b-256 e97b6ea0ce6d868894f60a644afc2f3aa3e0c744df3732049a9e1e01abee024b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 526.9 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.7-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b0e82d66b24ea47a3a52a3872b439e1a504deddc36644bff0228ffa8e7495ce5
MD5 2ea2b7d68c0a6df7c60df18af56c5615
BLAKE2b-256 9d4cdb8cb7c7277aa7a078b8bd82cdfa6f64a5d8cb35219a8387a2020d2f4b71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.7-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 53.6 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.7-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1a85abc26903f2661a13d059a80bf8133b8abb460d2cd26935c1a6b169a46f79
MD5 099b659cc351a30fc7b783ee5064b109
BLAKE2b-256 e37d467aef22f549a75a47988a6677cd2eb5e2540d75f942798e14f08679d1d0

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