File: control

package info (click to toggle)
unidecode 0.04.19-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,600 kB
  • ctags: 248
  • sloc: python: 48,888; perl: 30; sh: 24; makefile: 5
file content (83 lines) | stat: -rw-r--r-- 3,704 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
Source: unidecode
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Stefano Rivera <stefanor@debian.org>
Build-Depends:
 debhelper (>= 8.1),
 dh-python,
 pypy,
 pypy-setuptools,
 python-all (>= 2.6.6-3~),
 python-setuptools,
 python3-all (>= 3.1.2-6~),
 python3-setuptools
X-Python-Version: >= 2.6
X-Python3-Version: >= 3.0
Standards-Version: 3.9.6
Homepage: http://pypi.python.org/pypi/Unidecode
Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/unidecode.git
Vcs-Browser: https://anonscm.debian.org/git/python-modules/packages/unidecode.git

Package: python-unidecode
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
Description: ASCII transliterations of Unicode text (Python 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 port of the Text::Unidecode Perl module.

Package: pypy-unidecode
Architecture: all
Depends: ${misc:Depends}, ${pypy:Depends}
Description: ASCII transliterations of Unicode text (PyPy 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 port of the Text::Unidecode Perl module for PyPy.

Package: python3-unidecode
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: 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.