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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86

rapidfuzz-0.7.9-pp36-pypy36_pp73-manylinux2010_x86_64.whl (87.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.9-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (52.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.7.9-cp38-cp38-win_amd64.whl (58.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.7.9-cp38-cp38-win32.whl (50.0 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.7.9-cp38-cp38-manylinux2010_x86_64.whl (694.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.9-cp38-cp38-manylinux2010_i686.whl (529.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.7.9-cp38-cp38-macosx_10_9_x86_64.whl (55.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.7.9-cp37-cp37m-win_amd64.whl (58.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.7.9-cp37-cp37m-win32.whl (50.0 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.7.9-cp37-cp37m-manylinux2010_x86_64.whl (697.6 kB view details)

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

rapidfuzz-0.7.9-cp37-cp37m-manylinux2010_i686.whl (532.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.9-cp37-cp37m-macosx_10_9_x86_64.whl (55.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.7.9-cp36-cp36m-win_amd64.whl (58.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.7.9-cp36-cp36m-win32.whl (50.0 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.7.9-cp36-cp36m-manylinux2010_x86_64.whl (694.6 kB view details)

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

rapidfuzz-0.7.9-cp36-cp36m-manylinux2010_i686.whl (529.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.9-cp36-cp36m-macosx_10_9_x86_64.whl (55.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.7.9-cp35-cp35m-win_amd64.whl (58.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.7.9-cp35-cp35m-win32.whl (50.0 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.7.9-cp35-cp35m-manylinux2010_x86_64.whl (693.7 kB view details)

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

rapidfuzz-0.7.9-cp35-cp35m-manylinux2010_i686.whl (528.7 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.9-cp35-cp35m-macosx_10_9_x86_64.whl (53.8 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9.tar.gz
  • Upload date:
  • Size: 229.5 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.7

File hashes

Hashes for rapidfuzz-0.7.9.tar.gz
Algorithm Hash digest
SHA256 543eecc93a5f7c37f04f5d528775b2799f5e7f771b2a06351e41ab5b69280d44
MD5 a01e384827ef924200d8f04a524c498c
BLAKE2b-256 7f6d062b7bde001412b6fbd90caa34fce29780975b3d609219cea68e53ce6c07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-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.7

File hashes

Hashes for rapidfuzz-0.7.9-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 56c748091e9ace01531b325fa2a5e769acf64243e8a04e57a659b9c2243b194a
MD5 d7539a099f056bd7a756238621909c4b
BLAKE2b-256 e84b60576f5a3b3dbffea2ee361fbabcfb83ec84483229b32b15aefa212939be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 87.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.7

File hashes

Hashes for rapidfuzz-0.7.9-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b11c42c93f592788435a2bd4811191f999a307240b9cde6f4b02180054a46d28
MD5 ada6a79e052ddc0e7060001b63993ad7
BLAKE2b-256 12adc55e62cc9386411a943abe97b434d51613196db8b486f64f8a48831493fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.2 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.7

File hashes

Hashes for rapidfuzz-0.7.9-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 96f4ffdb8c58d4ded9a46157379187eccdd0c7e07ea66c6c0f4ecebc2482011e
MD5 19350a13702c1232829707d8fa915f3e
BLAKE2b-256 8c4f9418d03005d9350c3ffc127a031a00d5afe8a9b47ae846d617e378c3b097

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 58.6 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c05d10b7c6fd206dbeca53ed92d5ff2a43c2927f8dcf7f94675244333019619a
MD5 db56975e11333e5c4b774792008844b7
BLAKE2b-256 66f31c57070bf4f7ad2556de567c14ce3f4a7c4350e1490823f3cb4aa3ae99f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp38-cp38-win32.whl
  • Upload date:
  • Size: 50.0 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b1714654a400e7b7ecc3b0ea32ccc60460fb5daa20935960e6655ffe4d80c55d
MD5 ebca0f432280fb1d14b18e4fb48a3805
BLAKE2b-256 8badbc81e6fa6852a55c12ffcbefb0bdf24b6479fe03b66001105a9df4ea3af4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 694.2 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 542d18c1ad35cf12f2d2b953cfc2e015d12db930ed06c23cee39222bd1889e6d
MD5 a6e8e6ab2cb612a64004afbbef797b6a
BLAKE2b-256 a17600561e2eb0810f1ddd8a50295a504d43a59dda27517c51bc752031b9f196

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 529.3 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5af65f288ece1b1dc3b2fadeb80c71a35f353198310800c850e74ce8b3efdc3f
MD5 0841886cfac2a3a28e333ea5bbb35671
BLAKE2b-256 9be7decc8e134acab93b01d5689720ab1adca5c00f297d2641cf509adcf53cd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.5 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d2d74369f99cedad9eb4fb6a9621d7f97aac7dbde8c4f940c2a9cfeab6d56834
MD5 31f177ebd4c69cd8d01f830705078dbf
BLAKE2b-256 f8d05b5047f2d5f026e1fc9e155bb9b640120be5332c44b0ebced1e1f58dadd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 58.6 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5d8056bffde64e6c336546ee01ffbf487c55a729cc33ebb3ba8594edbd68d542
MD5 c3db2dc15d700791ed89c196421d732f
BLAKE2b-256 ad41e2d9bd8c7fc72a57860795bc2dc452398b3fe877aa65f8ef4b9cd7dcd093

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 50.0 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d8eedb587a83d3964fa6e47ac61f434d4c9844fe20f1ece1783786c623977191
MD5 d3b0deffb8f84439759da949d043de50
BLAKE2b-256 1e37ab98e1aa772e07eeaf2dfa8754a7bce2a9422267319444b5b5133fabac02

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.7.9-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 459c62f3ff5889f19ca405bb0875d214289636b092f3f22bdbcb8236d076636a
MD5 4e7bf139b6580a5bfd398d120760f013
BLAKE2b-256 c83992597b516b3153e92ec917f0809966c5fc0cdad78306623eac9b8af33da4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 532.8 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c953a9d922ca76e2b54582cc31ed0420c71de483739e378f9d378e78cba766b2
MD5 db6cbfe30e40d47fa06f940b23c4b6f8
BLAKE2b-256 143350a805fbc84bd4cde28bbd6a950b36b17ba187cf4acb92bcf8aa933dde1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.5 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 432b18cdbdaa791a2c44ad36187931153172fac617476c3d15b2eb59dd1625d2
MD5 5b9cc855a65c1eb8d09881aa7053720d
BLAKE2b-256 405373769167456157620ae3768fc08f8666ebd3da512bc85a78664b7604e7c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 58.6 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 04e1bf6cc330f0263336b6b37a6ac87a17ff49ba3c902df05b8a25510c17e464
MD5 d33a1216588b382ab2e6a422dbc73ac2
BLAKE2b-256 64809fce997e2d36dbfd267d8997b948078183ff68d8e875ea2bc808139d8e64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 50.0 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 23be480deee6fb515422b19f282b07901c3f509466cec358e6a715f5fda59017
MD5 fffd9801fa09c5ef220f548482567057
BLAKE2b-256 a470d98fb12ad901ab262a9b676295996900ee6d29509bc517dcd6e946630048

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 694.6 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cc77ee5efff183f517f831e8697961822cfba88aee216270847f230db7c1f44b
MD5 f753040ca5009c700890ecf56106711a
BLAKE2b-256 674491afea379579e3c7c61f1f34cb75fbbd376bd03c9710c7addf81737e7519

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 529.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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e88cfd33b4f32c2cfde6d2f08270a4ef6a794711517c2eab6cf267e1cbd242f3
MD5 ee26165ef67745c1504af44f02d38e5b
BLAKE2b-256 297eb2142d67330a341b32cffd4fe4ca8054ddeb61248bfeb0881f5268cc0803

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.5 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c71df7395817f988a7584de2597458fe342a99eaaeeb175bfccaac09d991a45
MD5 f143e7fb2690452528df026cc54b828a
BLAKE2b-256 ac4f8fb30e016b13a80f1279133466cff1a812ff93dc80c77932a95ac3dcce0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 58.6 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 532624cb9062bcf2fb93b849c3303f04167aa494b43cbaebc3be5b2e650876dc
MD5 e93682666b9b0faf0514a7d4b06fec52
BLAKE2b-256 a24d460378f7e86ffbcb68674a038ee58bd6deb1b6d4db121f3531f852b4a434

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 50.0 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 69091f831e4c848e46176c9a4d47c4745823324caa39768ac81b5d14509679a1
MD5 4ed119b0bd74e9de4b3bce5fe3b08793
BLAKE2b-256 70bff2dde0426c52791590f5d86278aa30b55eb3189a6f973a0360767f9ac435

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 693.7 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 15df27ce60f7d5fa046d032e1f7b8aa9e24d67566c85633e2fc11d7044ce78c4
MD5 643a937b6c9e15a4d54ce5d401867a48
BLAKE2b-256 7a30b5ad289afc52811733b141399d52e1a83073fb11a7293342069d840200f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 528.7 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4943157ffcca36aefeb401b6ffd74e9b973bb294001eb44dac867f46232f05b2
MD5 a9b844000f9abedbc8f8548c05396ff1
BLAKE2b-256 9820fdc090000635a62377c819bd4d88da67bfdd5e3e6727e493041f0d808ea8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.9-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 53.8 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.7

File hashes

Hashes for rapidfuzz-0.7.9-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f91651e2ba82de77d2be8de2afeb73c59e56cfc05299f99fe1f25860577ea677
MD5 f8e0718f3f74631f9a8d03d0233d2d96
BLAKE2b-256 bcf64f0b5e557f07f16af0202e5541ab1b0641bd88b30e57889cc414e5f32529

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