unidecode 1.3.8-1 source package in Ubuntu

Changelog

unidecode (1.3.8-1) unstable; urgency=medium

  * New upstream release.
  * Bump copyright years.

 -- Stefano Rivera <email address hidden>  Thu, 18 Jan 2024 10:59:23 -0400

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
Oracular release universe python
Noble release universe python

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
unidecode_1.3.8-1.dsc 1.4 KiB 2fb96791493c0c610e73f669946e2bc76d09c4c7603a82455106981c34adf52f
unidecode_1.3.8.orig.tar.gz 188.2 KiB cfdb349d46ed3873ece4586b96aa75258726e2fa8ec21d6f00a591d98806c2f4
unidecode_1.3.8-1.debian.tar.xz 3.8 KiB dd35885ce4ced0854c3dd427c0ccb99f8d4984fd5fa1afaae3056db5399f2406

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.