fuzzywuzzy 0.18.0-4 source package in Ubuntu

Changelog

fuzzywuzzy (0.18.0-4) unstable; urgency=medium

  [ Debian Janitor ]
  * Remove constraints unnecessary since buster:
    + Build-Depends: Drop versioned constraint on python3-levenshtein.
    + python3-fuzzywuzzy: Drop versioned constraint on python3-levenshtein in
      Depends.

 -- Jelmer Vernooij <email address hidden>  Mon, 17 Oct 2022 03:08:32 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
fuzzywuzzy_0.18.0-4.dsc 2.1 KiB 098ddad85952ba99b3d38bc19fc4305d41817f11b42fb86e54f75bf4fdf4bf90
fuzzywuzzy_0.18.0.orig.tar.gz 28.2 KiB 45016e92264780e58972dca1b3d939ac864b78437422beecebb3095f8efd00e8
fuzzywuzzy_0.18.0-4.debian.tar.xz 3.8 KiB 1ab6b132ee222fa72e08c28cc90975d2d840ca1fd231447ef1ff0d73411f9557

Available diffs

No changes file available.

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.