unidecode 0.04.16-1 source package in Ubuntu

Changelog

unidecode (0.04.16-1) unstable; urgency=medium


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

 -- Stefano Rivera <email address hidden>  Fri, 17 Oct 2014 19:42:25 -0700

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Vivid: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
unidecode_0.04.16-1.dsc 2.2 KiB 0fa5d1afd177650bca87b3b633ba596ac880be130ea55b7b547f4795fd212186
unidecode_0.04.16.orig.tar.gz 195.8 KiB 4cd218737d1a807bbaba9a6534fc3c80d129cff76cf7d7fdbd71e744d836657b
unidecode_0.04.16-1.debian.tar.xz 2.7 KiB 2867b98990dd9853b5bedb92c82d1778f67e28d60a7504d9efc812e20c39d0d9

Available diffs

No changes file available.

Binary packages built by this source

pypy-unidecode: No summary available for pypy-unidecode in ubuntu vivid.

No description available for pypy-unidecode in ubuntu vivid.

python-unidecode: No summary available for python-unidecode in ubuntu wily.

No description available for python-unidecode in ubuntu wily.

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.