unidecode 1.4.0-ok1 source package in openKylin

Changelog

unidecode (1.4.0-ok1) huanghe; urgency=medium

  * Build for openKylin.

 -- openKylinBot <email address hidden>  Wed, 03 Jun 2026 14:05:19 +0800

Upload details

Uploaded by:
openKylinBot
Sponsored by:
Cibot
Uploaded to:
Huanghe V3.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
python
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Huanghe V3.0 proposed main python

Downloads

File Size SHA-256 Checksum
unidecode_1.4.0.orig.tar.gz 195.5 KiB ce35985008338b676573023acc382d62c264f307c8f7963733405add37ea2b23
unidecode_1.4.0-ok1.debian.tar.xz 2.7 KiB 0da88b8150953ebe46ad9eeae3c6ccade66c47fda9016c5814173b2ead338eea
unidecode_1.4.0-ok1.dsc 1.8 KiB e11ced5d05f7bec0ce51c752065809c7047c5fcce93a6b3d07a81bb771120f1f

Available diffs

View changes file

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.