unidecode 1.3.8-ok1 source package in openKylin

Changelog

unidecode (1.3.8-ok1) nile; urgency=medium

  * Build for openKylin.

 -- openKylinBot <email address hidden>  Tue, 07 May 2024 10:59:46 +0800

Upload details

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

Publishing See full publishing history

Series Pocket Published Component Section
Nile V2.0 release main python
Nile V2.0 proposed main python

Builds

Nile V2.0: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
unidecode_1.3.8.orig.tar.gz 188.2 KiB cfdb349d46ed3873ece4586b96aa75258726e2fa8ec21d6f00a591d98806c2f4
unidecode_1.3.8-ok1.debian.tar.xz 2.7 KiB c98f37155a2d6781fea36be07310ff3ba6d52e276d3ace45bc133693d05baf2e
unidecode_1.3.8-ok1.dsc 1.8 KiB bb4ecb1dc5872d43781565aead9a832cd3dc94336e589856e1ea1c01a3874aee

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.