unidecode 1.3.3-1 source package in Ubuntu
Changelog
unidecode (1.3.3-1) unstable; urgency=medium * New upstream version * Drop unnecessary versioned dependency on python3-all. * Bump copyright years. -- Stefano Rivera <email address hidden> Wed, 23 Feb 2022 10:27:32 -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 | Published | Component | Section | |
---|---|---|---|---|
Jammy | release | universe | python |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
unidecode_1.3.3-1.dsc | 1.4 KiB | 1a4a2e33509ea819cebe489175b9da51aaa257a7284bd15d9eaf5314d3a50a2c |
unidecode_1.3.3.orig.tar.gz | 187.5 KiB | 8521f2853fd250891dc27d156a9d30e61c4e76319da963c4a1c27083a909ac30 |
unidecode_1.3.3-1.debian.tar.xz | 3.8 KiB | bff4159ca0255a77f0199d391102a2b70f51290a24a04dafb61c509a88550e4f |
Available diffs
- diff from 1.3.2-1 to 1.3.3-1 (1.9 KiB)
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.