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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (51.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

rapidfuzz-0.7.5-cp38-cp38-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

rapidfuzz-0.7.5-cp38-cp38-manylinux2010_x86_64.whl (691.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

rapidfuzz-0.7.5-cp38-cp38-manylinux2010_i686.whl (527.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

rapidfuzz-0.7.5-cp37-cp37m-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

rapidfuzz-0.7.5-cp37-cp37m-manylinux2010_x86_64.whl (694.6 kB view details)

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

rapidfuzz-0.7.5-cp37-cp37m-manylinux2010_i686.whl (531.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.5-cp37-cp37m-macosx_10_9_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

rapidfuzz-0.7.5-cp36-cp36m-win_amd64.whl (58.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

rapidfuzz-0.7.5-cp36-cp36m-manylinux2010_x86_64.whl (691.4 kB view details)

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

rapidfuzz-0.7.5-cp36-cp36m-manylinux2010_i686.whl (528.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.5-cp36-cp36m-macosx_10_9_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

rapidfuzz-0.7.5-cp35-cp35m-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

rapidfuzz-0.7.5-cp35-cp35m-manylinux2010_x86_64.whl (690.5 kB view details)

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

rapidfuzz-0.7.5-cp35-cp35m-manylinux2010_i686.whl (527.3 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

rapidfuzz-0.7.5-cp35-cp35m-macosx_10_9_x86_64.whl (53.4 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5.tar.gz
  • Upload date:
  • Size: 227.2 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.5.tar.gz
Algorithm Hash digest
SHA256 8baf889a2a38c1103bdeec309684a4b3cade73dc7cfc895c6391215374df32a1
MD5 d95386d218af45c4fbb2904382e58f4e
BLAKE2b-256 4703abeb89fb4f6921ad8dc269a8aaa21bba51c6f9f896b51943bd45f7d84a80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-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.5-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 2ce77a761eef3c4a14ff0d8c5100cec940158bcb5e116470e7f7b1e0eeceeec1
MD5 a26ab813f893a98551af7bdaea8921c4
BLAKE2b-256 84e0809cdfaee311ee06d4961c10fb1d4d4431618ee66137ad1a299a77560bf4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-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.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c3f6c09ef34992d5eed33caf00558ef52d8170996f6e44d53400a0554c4cda49
MD5 2788a845ef78fc783c5a62281dd38a72
BLAKE2b-256 98afde2e7cf795407de0edc5242b396ced8ac99c5a777a1a1b88b08b2558ed5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 51.8 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.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b9def712223cb1d793b5004d2ccb448de9477e6f1f7792d88f90590b690c6b4e
MD5 1d144220c6cabf6f02b5ca6b3e0a23f1
BLAKE2b-256 f238d726598bc5b0ef16cf2a1dc036fca81bf4196f58404dfe610dc8efafbd9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 58.2 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.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b74e89e990f495a00dbff4af407fb544d2200ef8c98ff5635aa22557c7c09c9d
MD5 dce591a460b88bb4d1014973673e2d18
BLAKE2b-256 84eafac024e69663f432ade5b2a4fe1a18b2db1c549c2285541fa5b72bc8e4e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-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.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 81ef1856f9b266d632d5f6ddcc71ca1291b9a285153dc47008fb9ed422c31ae2
MD5 e6d4c51f1083dd6784e5df526a12294a
BLAKE2b-256 101c1f67f9c4bfbd3f5d3644dd8493532c73efb3da56618b47ab2acae0cdfef1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 691.0 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.5-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 372ccf61c9840e5170aeb6912c06ed3f9a1cf691bea7470106bf652a57b7e811
MD5 7e8e926182b087445b9ffaf7ced82eb3
BLAKE2b-256 40647a20b5be13a2e08134fe8f17361d310868b060047f1ad497f5452ae00c75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 527.7 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.5-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b056869cba7b28fe675e9770d30b0fe090c458eb6955fe4ae1da35097cf131b2
MD5 8e46f9118a72a239803d66f2dd4e6ba0
BLAKE2b-256 3b84a3bfed2aa2f48954bdf067bf104a0e95949df73aa2b38aff293438985f01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-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.44.1 CPython/3.7.6

File hashes

Hashes for rapidfuzz-0.7.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33ddcfce733ce0e00822973dcc5c80169b3285a32351a0712334cb193f223717
MD5 9f545fa5476f2ff95dfd62ec7ceb2b6a
BLAKE2b-256 2a14874230040fadd0d672729113df616935d7035f131db0848096c4e5ed1a45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 58.2 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.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 630e9833c3538f200576e5b725ed1663f14fdb6d6063249221bd47c39ae710c5
MD5 5c751fb976eb9deee4082d1a37565e5c
BLAKE2b-256 82340dfb86b16fecbea5b8c2e4315d0fe964e8b6fb58aeffae58c45ddacabb0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-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.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2702925148eb32805bffa1df6e04a55fe54e436a44f237e563bbf0fbc3a5bebd
MD5 aff42330bf33fabf507fc986495cd3fb
BLAKE2b-256 25031e0eccb1434b91bdb5e0e449ac5e06d688520d88e657016494d4941d4ab0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 694.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.6

File hashes

Hashes for rapidfuzz-0.7.5-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0512d680babfc53a3d659070851f480f3b2e1fdd3e41d155f4f1fea5d6dbc1f8
MD5 271e9f92298dacbfbe15c9c98e681597
BLAKE2b-256 595c642515dd77c32d4b89596a6950031a78307cc248c9f93a5c680416406758

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 531.1 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.5-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0f05fe9abcaf52f214c01e736bd5cc82fdf76909327876c28a68cb56230076db
MD5 77afaeaeea5cdcdde90ada7bce69f082
BLAKE2b-256 09e607e472d0378c615d7747cac6caad956d05bae0d865efbc7ccf7841c578f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.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.7.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1ce6c350e9b32733bffbd5460ab536da20b885ce9be229193232c4d0adab00d
MD5 6c5f7f7d40e6f06d118b4a1467fc5e65
BLAKE2b-256 cecec679eb8925679c77465d653fea548afbb4810de0ae8f13ecb754cf86cd4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 58.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.7.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8dd4067a2061df15cfe805434e9279114aff27c08f2c340f7176a6ff4f72e878
MD5 022566a9fee7e9c769b0c95366c845e2
BLAKE2b-256 97560500e43888569795c8aea6df3c8bdfa36ed44b90d64f45fde8a37d2019db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-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.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8526b642f1a7b47d1abe0bf52cbe07a3f2617320243e0187600105a49672f991
MD5 f55facdf99dd355bfa2e3b9bd3571164
BLAKE2b-256 98d8085efa9f610cd1d1de57f82d30277baef0f5ca5f73a8fcc28ff839a3b2d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 691.4 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.5-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 63f20b1d1a3f78ba3f6526228e9ec2ecfeb25403c9816a5ec436a804f862e5f7
MD5 e30887653c449fc9e85b0adbe97afa3f
BLAKE2b-256 dbd9d79fe86b379c48dc535510a810bdb068055f3c76c80b3b8789d22064d79e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 528.2 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.5-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f858d31f129e88758e4ba1bfeca24a17dfe03c817d17506af7f9d214042c3ac9
MD5 e434d41574c7b896d5e7aeeaf0b73e17
BLAKE2b-256 c60aba96f00c13276ccea639f46ffa70c3b96d03d2ff5bfb16e56631929482e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 55.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.7.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d1dd9e4c61a122733dc087bded68fcdb4dc529e789ae9bc61808a432ecb8620
MD5 b7e5c91ff2f579899cdcf26ab6be1626
BLAKE2b-256 1655585161b62304cf32ba44d8350434fa1362a0291bbac327e7cfb91ff5d6fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 58.2 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.5-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 b9046720f81ab59ea10d27bc45a18f2c2f5a21d5f08a42f9404716a18b3a48fb
MD5 563342385c9bff1a164bf470f142ccb7
BLAKE2b-256 6b0021cedb223010ced782c6e83be7daf33b809349467f33a7193d09a4c2b7ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-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.5-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 55b4fe34bdc1ce0c99d83bb403a42dc70cbd9e803f2b342dd77823e5d9d51cf0
MD5 4c6c9ca7faf66903d20ab1bf82d9b9bc
BLAKE2b-256 9511b4f73123b06f0649a06eb74192ec40301985bba86e81b945d55b9a40b3a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 690.5 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.5-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 81a6651b309f8880b137dcf5688e7ef86dbacb752a23cce807cbf70239282f63
MD5 5a85c54c6ded1329cf46ce34a44fedf3
BLAKE2b-256 1bb737a39bf8a08c8eca270e9be5d47513acdd665ef2d8a95ddc83da3a817bbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 527.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.7.5-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4fd5b4f8da28cd9e871ee098470b7baf3605f2cc369f234c1ca8dded762bbf15
MD5 be8c6480ab200f707417d9f83218f667
BLAKE2b-256 21d79b8e294f1704def98555a0dde681858b70034afdedf11507df2b210490a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapidfuzz-0.7.5-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 53.4 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.5-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb23908d24f5eff6bcbd0cf5bc039bc7766e1d6e2d785273f87ec674347a22fa
MD5 a6c3638ae9b60d7d92767e74daf30794
BLAKE2b-256 3191cc161b169ad5132c881acbd80e81d0a666a78a28ff1352eabf91c2585379

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