I have a question about text rendering I'm hoping someone here can
answer. Is there a way of doing linguistically correct rendering of
Unicode strings in Python? In simple cases like Latin or Japanese I can
just print the string and see the correct results. However, I don't know
how to get Python to do the right thing for writing systems which
require contextual processing.
For example, let's say I create this Unicode string in Arabic:
string1 = u"\u0644\u062e\u0645" # lam khah meem
If I print string1, I get just the characters I specified above, which
is not correct rendering behavior for Arabic. In the simple case, I
should get an output string where the order is reversed, and the codes
have been changed into their contextually correct forms: initial lam
(\ufedf), medial khah (\ufea8) and final meem (\ufee2). Optionally, I
could even ask for a single ligature combining all three of these;
Unicode even encodes this at \ufd85.
The situation is even more complicated for writing systems like
Devanagari (used in Hindi and Marathi). In this case there are rules for
ligatures (called "conjuncts") which are linguistically required, but
unencoded by Unicode. Technology was developed 15 years ago to deal with
this: fonts contain tables of extra information allowing access to the
correct conjunct glyphs at rendering time, even if they're unencoded.
Apple has software that deals with correctly rendering text in cases
like this (ATSUI); Microsoft does as well. IBM provides the ICU software
classes for this kind of rendering, and I believe FreeType has made a
start on dealing with AAT and OpenType fonts as well. So my question is
this: how do we get this functionality integrated into Python? I'd love
to be able to print any Unicode string and have it come out
linguistically correctly, even if I have to do a little extra formatting
(e.g. something like adding a new string-formatting conversion character
%t for typographically rich output).
Any ideas?
Dave Opstad 6 2959
> Any ideas?
Perhaps using a GUI call that hooks into Windows or MacOS would be
sufficient for you. I don't know if tkinter or wxPython can handle it,
but I would imagine that standard Windows gui calls wouldn't have a
problem. Check out the pythonwin GUI extensions: http://www.python.org/windows/pythonwin/
- Josiah
David Opstad wrote: my question is this: how do we get this functionality integrated into Python? I'd love to be able to print any Unicode string and have it come out linguistically correctly
Isn't this a function of whatever app you're running Python code inside (a
terminal or something)? E.g. could you take the output of your Python
program as a file and display it in Yudit or a Pango app?
Mike Maxwell
In article <ma************************************@python.org >,
"Mike Maxwell" <ma*****@ldc.upenn.edu> wrote: Isn't this a function of whatever app you're running Python code inside (a terminal or something)? E.g. could you take the output of your Python program as a file and display it in Yudit or a Pango app?
In an interactive Python session on the Mac, the terminal window can
display Asian or accented Latin with no problem, so that: firstCJKChar = u"\u4e00" print firstCJKChar.encode('utf-8')
gives the correct output, the Chinese character "yi". (The terminal's
defaults are for UTF-8 text display)
All I'm wondering is whether this odd asymmetry (between parts of
Unicode that display correctly with no further work and parts of Unicode
that need more active processing) is something that could be addressed
by adding more sophistication to Python's own output formatting. The
alternative is, as you suggest, to export Unicode text and open it with
another application, but I want Python to shine for all languages by
default!
Dave
David Opstad <op****@batnet.com> writes: In article <ma************************************@python.org >, "Mike Maxwell" <ma*****@ldc.upenn.edu> wrote:
Isn't this a function of whatever app you're running Python code inside (a terminal or something)? E.g. could you take the output of your Python program as a file and display it in Yudit or a Pango app? In an interactive Python session on the Mac, the terminal window can display Asian or accented Latin with no problem, so that:
firstCJKChar = u"\u4e00" print firstCJKChar.encode('utf-8')
gives the correct output, the Chinese character "yi". (The terminal's defaults are for UTF-8 text display)
But it seems to be impossible to programmatically determine which
encoding the terminal being printed to at a given moment is using (and
the user can fiddle this at run time). If I'm wrong about this, I'd
like to know.
All I'm wondering is whether this odd asymmetry (between parts of Unicode that display correctly with no further work and parts of Unicode that need more active processing) is something that could be addressed by adding more sophistication to Python's own output formatting.
I don't think so. Depends a bit what you mean by "Python's own output
formatting". Since, 2.3 Python if sys.stdout is a terminal it
attempts to determine the encoding in use via the
"locale.nl_langinfo(locale.CODESET)" approach, but whether this
actually works seems to be a bit random. It certainly isn't going to
work on Mac OS X, which AFAICT ignores locales as much as the ISO C
standard lets it get away with.
What more would you have us do?
If you're using some other means to display Unicode text, it's up to
that means to ensure it gets displayed correctly. For PyObjC, It Just
Works, I think.
Cheers,
mwh
--
Academic politics is the most vicious and bitter form of politics,
because the stakes are so low. -- Wallace Sayre
In article <m3************@pc150.maths.bris.ac.uk>,
Michael Hudson <mw*@python.net> wrote: But it seems to be impossible to programmatically determine which encoding the terminal being printed to at a given moment is using (and the user can fiddle this at run time). If I'm wrong about this, I'd like to know.
The encoding issue is peripheral to my point; sorry if I wasn't clearer
in my original message. It doesn't matter what the encoding is. The main
issue is that for some writing systems (e.g. Arabic) simply outputting
the characters in a Unicode string, irrespective of encoding, will
produce garbled results.
What more would you have us do?
Well, for those writing systems whose presentation forms are included in
Unicode, how about a further processing step? So that at a minimum, if I
start with an Arabic string like "abc" I can get out an Arabic string
like "CBA" where bidi reordering has happened, and contextual
substitution has been done. Then, outputting the processed Unicode
string using stdout will work without further intervention (assuming a
font for the writing system is present, of course).
It's probably irrational of me, I admit, but I'd love to see Python
correctly render *any* Unicode string, not just the subsets requiring no
reordering or contextual processing.
Dave
David Opstad <op****@batnet.com> writes: In article <m3************@pc150.maths.bris.ac.uk>, Michael Hudson <mw*@python.net> wrote:
But it seems to be impossible to programmatically determine which encoding the terminal being printed to at a given moment is using (and the user can fiddle this at run time). If I'm wrong about this, I'd like to know. The encoding issue is peripheral to my point; sorry if I wasn't clearer in my original message. It doesn't matter what the encoding is. The main issue is that for some writing systems (e.g. Arabic) simply outputting the characters in a Unicode string, irrespective of encoding, will produce garbled results.
What more would you have us do?
Well, for those writing systems whose presentation forms are included in Unicode, how about a further processing step? So that at a minimum, if I start with an Arabic string like "abc" I can get out an Arabic string like "CBA" where bidi reordering has happened, and contextual substitution has been done. Then, outputting the processed Unicode string using stdout will work without further intervention (assuming a font for the writing system is present, of course).
Ah, OK. You are now officially beyond my level of expertise :-) You
might want to talk to the i18n-sig.
This sounds very much like the sort of thing that could/should be
developed externally to Python and then perhaps folded in later, a la
CJKCodecs.
It's probably irrational of me, I admit, but I'd love to see Python correctly render *any* Unicode string, not just the subsets requiring no reordering or contextual processing.
I still think "render" is probably the wrong word to use here, though.
Cheers,
mwh
--
In short, just business as usual in the wacky world of floating
point <wink>. -- Tim Peters, comp.lang.python This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: John Hunter |
last post by:
matplotlib is a 2D plotting library for python. You can use
matplotlib interactively from a python shell or IDE, or embed it in
GUI applications (WX, GTK, and Tkinter). matplotlib supports many...
|
by: Shufen |
last post by:
Hi all,
Can someone who has use PHP before and know quite well about the
language, tell me what are the stuffs that Python offers and PHP
doesn't. A few examples will be nice. I know about the...
|
by: Andrew Dalke |
last post by:
Is there an author index for the new version of the
Python cookbook? As a contributor I got my comp version
delivered today and my ego wanted some gratification.
I couldn't find my entries.
...
|
by: dcrespo |
last post by:
Hi all... Is there a way to print a PDF file directly from Python
without having Acrobat installed? I know about ReportLab. It's a python
module that lets you create almost any PDF document, but I...
|
by: david |
last post by:
hi:
The file can be PDF or Word format. Any help?
thx
|
by: Dennis Benzinger |
last post by:
Hi!
Does anybody know of a SVG rendering library for Python?
Bye,
Dennis
|
by: Shadow Lynx |
last post by:
Consider this simple HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 STRICT//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>...
|
by: 63q2o4i02 |
last post by:
Hi, I'm interested in using python to start writing a CAD program for
electrical design. I just got done reading Steven Rubin's book, I've
used "real" EDA tools, and I have an MSEE, so I know what...
|
by: Michael Bulatovich |
last post by:
Is there a way to use CSS to format "plain" text in an html document. By
plain I mean text which is not contained by <por <h#tags.
Is there no way to control how this stuff is rendered?
tia
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: DJRhino |
last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer)
If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _
310030356 Or 310030359 Or 310030362 Or...
|
by: lllomh |
last post by:
How does React native implement an English player?
| |