unidecode 1.3.6-1 source package in Ubuntu

Changelog

unidecode (1.3.6-1) unstable; urgency=medium

  * New upstream release.
  * Bump Standards-Version to 4.6.1, no changes needed.

 -- Stefano Rivera <email address hidden>  Sat, 01 Oct 2022 14:36:59 +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
Mantic release universe python
Lunar release universe python

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
unidecode_1.3.6-1.dsc 1.4 KiB 90a0c7d103ff01c0da4df58fabbbb7ff30fabb0cf003c7167e6a5a48fbe9483d
unidecode_1.3.6.orig.tar.gz 188.0 KiB fed09cf0be8cf415b391642c2a5addfc72194407caee4f98719e40ec2a72b830
unidecode_1.3.6-1.debian.tar.xz 3.8 KiB fd50bb6c86ff58a931a8e0a2b3262db03fa3ba589ec3f3501f0d4516a2d43330

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.