thefuzz 0.22.1-1 source package in Ubuntu

Changelog

thefuzz (0.22.1-1) unstable; urgency=medium

  * New upstream release.
  * Replace Build-Depends python3-levenshtein with python3-rapidfuzz to
    follow upstream.
  * Update copyright year.
  * Update Standards-Version.

 -- Edward Betts <edward@4angle.com>  Mon, 15 Apr 2024 05:46:48 +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

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
thefuzz_0.22.1-1.dsc 2.2 KiB ffcf772029ae54d7b1cbb11aa0ae233dd7876bd8b61a25b86aa3c18594a6d679
thefuzz_0.22.1.orig.tar.gz 66.8 KiB bc9eba89dde050cac60d2a3cb21e250dbca4183e1781083dd936e1cced24a232
thefuzz_0.22.1-1.debian.tar.xz 2.5 KiB 95d901c87e684f05806c66e9b25fc91e4c319c3d630ee840614de2c4beb5f3cb

Available diffs

No changes file available.

Binary packages built by this source

python3-thefuzz: Fuzzy string matching in Python

 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.