unidecode 1.3.7-1 source package in Ubuntu

Changelog

unidecode (1.3.7-1) unstable; urgency=medium

  * New upstream release.
  * Bump copyright years.
  * Bump Standards-Version to 4.6.2, no changes needed.

 -- Stefano Rivera <email address hidden>  Tue, 03 Oct 2023 11:34:28 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
unidecode_1.3.7-1.dsc 1.4 KiB fb9d444128ac9d350aeb34814e812b1a2253c6d0b4335170c1b44c048886c967
unidecode_1.3.7.orig.tar.gz 188.1 KiB 3c90b4662aa0de0cb591884b934ead8d2225f1800d8da675a7750cbc3bd94610
unidecode_1.3.7-1.debian.tar.xz 3.8 KiB 16aaec84dda799b614924d97531819dee10a16b3812898971927795fe76c2e59

Available diffs

No changes file available.

Binary packages built by this source

python3-unidecode: ASCII transliterations of Unicode text (Python 3 module)

 It often happens that you have text data in Unicode, but you need to represent
 it in ASCII for display. One could represent non-roman Unicode characters as
 "???" or "\\15BA\\15A0\\1610", but neither is useful to the user reading the
 text.
 .
 Unidecode tries to represent it in ASCII characters (i.e., the universally
 displayable characters between 0x00 and 0x7F), where the compromises taken
 when mapping between two character sets are chosen to be near what a human
 with a US keyboard would choose.
 .
 This module generally produces better results than simply stripping accents
 from characters (which can be done in Python with built-in functions). It is
 based on hand-tuned character mappings that for example also contain ASCII
 approximations for symbols and non-Latin alphabets.
 .
 unidecode is a Python 3 port of the Text::Unidecode Perl module.