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 your 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 5-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.14 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++17 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.

PyInstaller

When using RapidFuzz with PyInstaller it is required to pass the following option to it:

--hidden-import _rapidfuzz_cpp

The reason for this is that rapidfuzz included all the C++ components from a Module called _rapidfuzz_cpp. Since this import is hidden from PyInstaller it is required to tell it about it, so it included the Module in the binary.

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 aswell. A Fork of 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.4.0.tar.gz (16.6 kB view details)

Uploaded Source

Built Distributions

rapidfuzz-0.4.0-cp38-cp38-win_amd64.whl (79.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

rapidfuzz-0.4.0-cp38-cp38-win32.whl (68.4 kB view details)

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.4.0-cp38-cp38-manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.4.0-cp38-cp38-manylinux2010_i686.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

rapidfuzz-0.4.0-cp38-cp38-macosx_10_15_x86_64.whl (97.2 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

rapidfuzz-0.4.0-cp37-cp37m-win_amd64.whl (79.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

rapidfuzz-0.4.0-cp37-cp37m-win32.whl (69.2 kB view details)

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.4.0-cp37-cp37m-manylinux2010_x86_64.whl (1.5 MB view details)

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

rapidfuzz-0.4.0-cp37-cp37m-manylinux2010_i686.whl (1.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.4.0-cp37-cp37m-macosx_10_15_x86_64.whl (96.5 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

rapidfuzz-0.4.0-cp36-cp36m-win_amd64.whl (79.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

rapidfuzz-0.4.0-cp36-cp36m-win32.whl (69.2 kB view details)

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.4.0-cp36-cp36m-manylinux2010_x86_64.whl (1.5 MB view details)

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

rapidfuzz-0.4.0-cp36-cp36m-manylinux2010_i686.whl (1.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.4.0-cp36-cp36m-macosx_10_15_x86_64.whl (96.5 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

rapidfuzz-0.4.0-cp35-cp35m-win_amd64.whl (79.9 kB view details)

Uploaded CPython 3.5m Windows x86-64

rapidfuzz-0.4.0-cp35-cp35m-win32.whl (69.2 kB view details)

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.4.0-cp35-cp35m-manylinux2010_x86_64.whl (1.5 MB view details)

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

rapidfuzz-0.4.0-cp35-cp35m-manylinux2010_i686.whl (1.0 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.4.0-cp35-cp35m-macosx_10_15_x86_64.whl (94.2 kB view details)

Uploaded CPython 3.5m macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0.tar.gz
  • Upload date:
  • Size: 16.6 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.4.0.tar.gz
Algorithm Hash digest
SHA256 03c20af04c65749bc23e950870c82913afdd55d0192f14046bdf5d9e5a24ad85
MD5 d093cc72be35fe2ad8858fb3e0ea16bb
BLAKE2b-256 789b13dfc1d6f9fc323e9bbde3aea0745d6fdc11529d0dab2b2e09ba77128670

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 79.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.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a624cf09800eed014a3ac1746b49cda8ad94519c28d000bae901ac275c4353c6
MD5 760d2e3a9595470adc3a87bd4d05ffa1
BLAKE2b-256 c0ee47f6971c5653c1dc01f70d582fa6cb76efe0eb6f31d4ed80bf0bbb4be1d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 68.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.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2de1f0ba693ecad1bba6df2ac46392b01dc6bd48c6239ad4383a41e0d6d6670f
MD5 bf785638db2369091eccf45468aa6d21
BLAKE2b-256 e290ee832999803940bca9f3daf51e98ccf47417c07987ee3bff1ecef48027be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 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.4.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 807de1df3f03cee478b74f29f0f951ffe53b92d1d4c628f96b691ba6225283af
MD5 6de114aa65215362a1484ee314d7451c
BLAKE2b-256 ed76aad38774fcb5aa3c22ed993642f9bbb1f84543b0b4881d346f939c605251

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • 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.4.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 30fcb17dbee9f877772c5981eddcbc96010945bf23cb95433799db098e35322a
MD5 42cbe9c28649a82b8ec71ea1b6c0d905
BLAKE2b-256 968eb8ef815a83906d6673e4f339418e2c1ad84cbf0936c9b36f997b0f9276ca

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.4.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.4.0-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 97.2 kB
  • Tags: CPython 3.8, macOS 10.15+ 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.4.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 af5f746cfbadbeab7c7bc1902561a0b867d0f785cfbd09d91269c4742a85f2b7
MD5 dfb6bff65a990c6ebd58fd1ad3508f73
BLAKE2b-256 a93196ed93b6e6fce993dd6b013a749210abce06460ddc9155134cbd97a28049

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f0ce65d8da30e08e46429457e6ab887f138776349d40b91795a0eafa09339b23
MD5 05c43c97e28e52e6df15d89e68b1868e
BLAKE2b-256 005262ec27cbb8c4d429212e3665db2dbfe411b734b6c1dc2d54a2c9f9197573

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 69.2 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.4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 edcc7c26be5a1f2eee252d1d52c0173c7fc9b6d6e46920b4e0226de5f3c80125
MD5 080933729d1540e742d409209c50b059
BLAKE2b-256 092823daa666167328225b4ea67246ea66bb83d842934ae3d04df17938198b39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 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.4.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3eec3f188572852f396acd748ca44963e1bfe2451830bc494c753b9aa0f7619c
MD5 38f9d1f7cba8480c8d38ea045da6b89b
BLAKE2b-256 c3397f0b13bd2b9d7decfe1004520ce19c3d16f1ba8fa8aef469e2cddd9e8a17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • 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.4.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ad5137a55d66baef73b43227e6376360ee8d67f67e5911af3e5f6ef73003173f
MD5 aa556658b8009f64530757d00e6ddce6
BLAKE2b-256 467d78fbd76700f68309825559e06f9957da9f692574ff7fd1894c187ea3a818

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.4.0-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.4.0-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.7m, macOS 10.15+ 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.4.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b7e69f3321147ac7ec1616de3940142b972ed487149e8e28a72805363bba7a21
MD5 e1130e083bd03097dc9103d764d9506f
BLAKE2b-256 22e61c1b5b2c4f562c0f432437822898b5859bdf7a310e28b033d8be49f418d2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.4.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7dd6a31fc65290ca9624aadff4228027c6f72a7bd3bc26f6537a9341ec9b00bf
MD5 31b67fdaf4f5b630725e451105df4ea2
BLAKE2b-256 ea489cf516d5910db0fff52e603a0481b4ac446a910b5b6c6b980b94218640b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 69.2 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.4.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 79459652a4a6a0be69d9479f45512cd453c7368d533eb98e1512e805ca333353
MD5 5789f6646267adf588a926202ce58c37
BLAKE2b-256 70a03d919abc93740c04f8273a01b486a83bb2350cc07a9b1c534cc28d57d870

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 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.4.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0245986875d3c839330947f0888bf1c070cf88cc94d25cc6ec7ad2017bd99bab
MD5 bf82688ac109a76c7bf357e1bcd2bc35
BLAKE2b-256 f944668a97bb9531087d8e7297cf69fe581585907111b97c99291665b2d2e6d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • 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.4.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4a22414dbc3ada046af51825eb138399619d3e36dbef57f1663ae7f756698c29
MD5 62d28c7662e9a4ca107edc40fa1a2629
BLAKE2b-256 c12126ace9da7e8724102370bd21b27e3e7a5a5f8f8e3f7f4acedecc8e73cf72

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.4.0-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.4.0-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.6m, macOS 10.15+ 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.4.0-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b8ec5a4c4baee36a3365a78b9666a4f611d1d770b6e5b0ced48e97cde4f938b0
MD5 a18c1216042856034b3bbd728883a532
BLAKE2b-256 d1d86ec178b88a0f325047adee824cf8eb908adb5d763a053ef190d0a45c5c36

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rapidfuzz-0.4.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 800f48a685d5f9f410550b8faec6e24ac19964af2ec49e55e4f4dbbcde631b95
MD5 e26f3dfa44a04b25c63e0b7de75c30d9
BLAKE2b-256 32a8d806edb067015116ca15108c3d37cbf34e74b1d59633a630e9013b48876c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 69.2 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.4.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c69ec36bd985594c7cc22db4674014dfd499d5b96d1cfc117530ae60f71207eb
MD5 316b55ed2918bd31c724702b8ffe1665
BLAKE2b-256 3caa057859a3323b32775422e50c3b675c382966efe0290c8f2ebc93cecd938c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 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.4.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 893270bfc8456d370d7af1337f61da3e52a96b47a646b6830441cc964cc4a431
MD5 f05a513c023ab3f8e80bbd2cdb452169
BLAKE2b-256 650d369938f41e85fadfc24c168988d3f6c1bf5897910313a3b865e2f7324422

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.4.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • 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.4.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a3063122c0b0703066080c550f46b71f5a1c5ad4e3c17e2d1aa7e3fa34b51cd3
MD5 76afd86366ad36b95006ec5259df25c7
BLAKE2b-256 b993ffcd5cecfadb3db4031a329acfc21af7304d99c21f95e5d41ec8a6ceb4db

See more details on using hashes here.

File details

Details for the file rapidfuzz-0.4.0-cp35-cp35m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: rapidfuzz-0.4.0-cp35-cp35m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 94.2 kB
  • Tags: CPython 3.5m, macOS 10.15+ 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.4.0-cp35-cp35m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4bce4bc6f5cd62da7065d4face9a76582065661438d2c54709900fa237328d23
MD5 a2cea3b4a7027d9dfa163000e0b7c758
BLAKE2b-256 10ebd88e4b86a3635cacfd69949a9f77b2840e1f35e3cd3b7c30013c7965371b

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