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 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 GPLv2 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

We currently have 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 we believe that everyone should be able to use it without being forced to adopt our license. Thats why the library is based on an older version of fuzzywuzzy that was MIT licensed as well. A Fork of this old version of fuzzywuzzy can be found here.

Project details


Release history Release notifications | RSS feed

This version

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

Uploaded Source

Built Distributions

rapidfuzz-0.6.1-cp38-cp38-win_amd64.whl (73.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.6.1-cp38-cp38-win32.whl (61.4 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.6.1-cp38-cp38-manylinux2010_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.6.1-cp38-cp38-manylinux2010_i686.whl (866.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl (89.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.6.1-cp37-cp37m-win_amd64.whl (73.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.6.1-cp37-cp37m-win32.whl (61.4 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.6.1-cp37-cp37m-manylinux2010_x86_64.whl (1.1 MB view details)

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

rapidfuzz-0.6.1-cp37-cp37m-manylinux2010_i686.whl (868.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.6.1-cp37-cp37m-macosx_10_9_x86_64.whl (89.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.6.1-cp36-cp36m-win_amd64.whl (73.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.6.1-cp36-cp36m-win32.whl (61.4 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.6.1-cp36-cp36m-manylinux2010_x86_64.whl (1.1 MB view details)

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

rapidfuzz-0.6.1-cp36-cp36m-manylinux2010_i686.whl (866.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.6.1-cp36-cp36m-macosx_10_9_x86_64.whl (89.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.6.1-cp35-cp35m-win_amd64.whl (73.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.6.1-cp35-cp35m-win32.whl (61.4 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.6.1-cp35-cp35m-manylinux2010_x86_64.whl (1.1 MB view details)

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

rapidfuzz-0.6.1-cp35-cp35m-manylinux2010_i686.whl (865.3 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.6.1-cp35-cp35m-macosx_10_9_x86_64.whl (86.2 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.1.tar.gz
Algorithm Hash digest
SHA256 c4c042febd97cb89690a1bdc6a443451b902579456cca95db6e5afb30fd585ec
MD5 a5b612337781a0b6e0b3a235cf066ffc
BLAKE2b-256 190a6d85897f5206a5732896195aeccbf13e30e1abe965e3af907e1c250b6907

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 73.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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.6.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a86cad419160529f12a0bd86aedd1bf1165167e0dd94b4c6cde9d8c6f3e652e2
MD5 910f7418d613180556f32b7c6721bb4d
BLAKE2b-256 2d8841c928c98704020c8afc000a926384f4d5a47ed2a1e5a8912f7eaf6adab2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 61.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.6.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 fd7b3a6eed20f5f40454505f15e6f77f58cff0e2d081654d51c685d96343579a
MD5 1660469eb0bb8a0f8442c1a6f892c278
BLAKE2b-256 bc248b118830e6c13e4d87a491bcf23f7bec30922d6fbb45b770422be642a901

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.1 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.6.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3894d69527ee19151d1594bccab66262ac01734038b6c5b6c2dd1aaf4e8042ce
MD5 c69fa982bd897f34ab5bc33ad1241df4
BLAKE2b-256 f0bca202b21f28f22c3a9a64f43be6a7cc5f5907d9e6c9244b41e889c0a92460

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 866.0 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.6.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ce6c8a04a72d0d720e4e622235dfecca242f69d2d3a28f59f850d572d84f7ac6
MD5 fd420174a0cdd439fd59711af6b6d0bf
BLAKE2b-256 417f9f2edc938b1d0779a8feac68ee0e6a4ab4dc575778852442d039761ba0db

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95551e000512a3e473a0c8bafa7a0aee1f631c4704ab17c759067bad45ce5c64
MD5 3d37ffa44f05be252400bbdc26e34af9
BLAKE2b-256 f39a9253e364a1740b49aacc6272dd7f30b5274ec15153c49d991ed426a2be10

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6aa6e6fa5a2cc00bd8defcedaf51b9ecb7391e593a0c7cc845a7094a83b8fe90
MD5 b94e8306984a04d73b4e34b7e1a01835
BLAKE2b-256 e5f5fa501d80f55da048aeee98070708c6e258ffcb4a2713d00248a2a70f4f91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 61.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.6.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d8efc9512220e9de89e5e44ed56ad148fc191951bab39b2e3d8cca011a416a36
MD5 0f1894da3b1302febf90a26030756e37
BLAKE2b-256 100381fdf4614196abdc5d85647031ec92335797a2eea31764aff3cf564e6347

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.1 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.6.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 51a42b5d0fa1c5090a42a88d8016a84958caa7ba1e184f0d2c3ac64fb39e58cc
MD5 0e64ea76dc8b42de06a7305f2f2b6bea
BLAKE2b-256 dfc9325447f59be969bc71716e78a7d642245cdf84ad5889a2e8a4e154d00a05

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 868.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.6.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 87be78a1e29548372557d120ff897a1cb139b4c0c2366c916f0c3c8f29e9a239
MD5 f9b27498bef630fe46e30f3413e5e21c
BLAKE2b-256 a3f22b95a14cdf13ee271f6842ba466ba97a282339220b895f3712b6659b72ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 89.2 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.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 445275c4c1487d3d135c23e4288ca46b97de50c231a230c9f5c653d99fc6e69c
MD5 0c142f12b0938a846f701d2597f7fb0c
BLAKE2b-256 b58ca3f7fc2b62d84e3fa14033fcfac229f83d120b22dbbbef02366f1c761c33

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8ca998e61c27bf74f2d7dd16989c9d1fd03c1f1dbafdae618a99f47280230bf9
MD5 b5e4475d29115e9eff5c6e7ecbdfda72
BLAKE2b-256 7480e8c27415d28b3ca5d91cadae89fd1c9c17883e1325293ac094bed991b11a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 61.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.6.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 319ec098ffe9b615f7e379db17df197d0af02755cc281f321551dc22b01cf572
MD5 be51ff5d6528ceaa00662bd789498fd9
BLAKE2b-256 88429cb490b2b7d3ad2a72850913342dda6948b330ae0451e8a1f7135b83d9a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.1 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.6.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0556d9b5ef39e4f69fa105d3b94f84430296f26bfc5475d8aa8613540bb1b84b
MD5 000f7106d30595853473e3cda93fa0a1
BLAKE2b-256 bf5f78dfbe13c2a89b829359144628ad0ae6046eaa91aa1849ddd098d2f70a7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 866.0 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.6.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d8618d68cd7c3204fc363782103a82a5597af42a37126b812a775ee4ba4ef8c8
MD5 c17fde882db3c28fa8bf84c13d51eda0
BLAKE2b-256 888b77ffb66b5611bd599c727cc5b4a002cdd18aad01036398630bdfa8a168cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 89.2 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.6.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc9ab15c7cfcda6bcc25c95537419971c36f53149475c25106f5979161557ee0
MD5 f296c43dd44b5ab8733723197cedbe56
BLAKE2b-256 236b6a63b9e5eb8e7af97fee810ccc99c7ecc1560ccc59389cc315988bb8aa71

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 0518fb5fc268a5da3465b514a2a3cd05e48922fa34d66a402da49290c9f50472
MD5 3b52ba66f2b928df1acddc2e40d36695
BLAKE2b-256 dc45e361a06325d9c957f43cc31bbddf1c76120cb917971b64dc50171f038686

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 61.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.6.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f5caec6cad7ad3800ee90784e1150248b9aebf463e621c44a6cb02fb7d406b1c
MD5 3c88d776517b4d4fbcb4663e61d260d2
BLAKE2b-256 d245e06e67a3e124968f360caf835147c65acc8d32fa24c5495ba739493a18cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.1 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.6.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 70a9bc9c32f19b3f49794c81fe4823482b2a80f87f0b98f1c6a80694b7f1fdcb
MD5 e9566f5a85a990d4bc9f1eac2221bfb2
BLAKE2b-256 65900c1d1fa8579d416707cdc9ccadc26f681c7d371a1d6107298a796dbe74d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.6.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 865.3 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.6.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9a84971b381eb25fe3a04b8552b2130451179e2a0db0b03f0aac8d3b7d38b45e
MD5 6ddfe328efbff24ffb069910a851ee78
BLAKE2b-256 32f48730f7eb03866955d70a43f11210c7a8d9aa3ce6dbe9e36a6f22c6e469e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.6.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 61d0be7a64cc62ab8c8cb9ddf47bb8c3314fc6c7f378e9305cb551891dd03eb4
MD5 fda5a89cf98685fe0683dd9828285da9
BLAKE2b-256 d4bbd32bae338f03fb403702729bb361c3814032a8b48aa34b32cac9845eea28

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