unidecode 1.3.4-1 source package in Ubuntu

Changelog

unidecode (1.3.4-1) unstable; urgency=medium

  * New upstream release.
  * Bump copyright years.

 -- Stefano Rivera <email address hidden>  Fri, 11 Mar 2022 10:41:24 -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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
unidecode_1.3.4-1.dsc 1.4 KiB 8ee289d27766341c5968c15a46af13a256098d7d910430a632acd5d7aabc63fb
unidecode_1.3.4.orig.tar.gz 187.8 KiB 8e4352fb93d5a735c788110d2e7ac8e8031eb06ccbfe8d324ab71735015f9342
unidecode_1.3.4-1.debian.tar.xz 3.8 KiB c5dac709dc6a3c08d248437708e72551dc74a2c8414b3a13b6a33dcc6f8f8dce

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.