fuzzywuzzy 0.17.0-2build1 source package in Ubuntu

Changelog

fuzzywuzzy (0.17.0-2build1) focal; urgency=medium

  * No-change rebuild to generate dependencies on python2.

 -- Matthias Klose <email address hidden>  Tue, 17 Dec 2019 12:52:08 +0000

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Focal
Original maintainer:
Debian Python Modules Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
fuzzywuzzy_0.17.0.orig.tar.gz 26.7 KiB 6f49de47db00e1c71d40ad16da42284ac357936fa9b66bea1df63fed07122d62
fuzzywuzzy_0.17.0-2build1.debian.tar.xz 3.4 KiB 932e621443910c8fecc7e33883febbe420e3386c4de98b6265ec6f8a90d2f70f
fuzzywuzzy_0.17.0-2build1.dsc 2.1 KiB d4eb40972034c657aacc5965c99fd15caed5761a2d9e5da196ebf5cc904e8e09

View changes file

Binary packages built by this source

python3-fuzzywuzzy: Python 3 module for fuzzy string matching

 Various methods for fuzzy matching of strings in Python, including:
 .
   - String similarity: Gives a measure of string similarity between 0 and 100.
   - Partial string similarity: Inconsistent substrings are a common problem
     when string matching. To get around it, use a "best partial" heuristic
     when two strings are of noticeably different lengths.
   - Token sort: This approach involves tokenizing the string in question,
     sorting the tokens alphabetically, and then joining them back into a
     string.
   - Token set: A slightly more flexible approach. Tokenize both strings, but
     instead of immediately sorting and comparing, split the tokens into two
     groups: intersection and remainder.
 .
 This package contains fuzzywuzzy for Python 3.