Re: What's the best GUI toolkit in Python,Tkinter,wxPython,QT,GTK?
Tom <[EMAIL PROTECTED]> writes: > 1) Portable to Windows, Unix-like platforms, and the Macintosh; > 2) Powerful, GUI is very beautiful ; > 3) Efficiency of development is high; > > What's the best, Tkinter, wxPython, QT, GTK or other? html ! -- William http://wikipython.flibuste.net : wiki francophone sur python -- http://mail.python.org/mailman/listinfo/python-list
Re: string conversion latin2 to ascii
* Martin Landa <[EMAIL PROTECTED]>, 2007-11-27: > I have unicode string (or better say latin2 encoding) containing > non-ascii characters, e.g. > > s = "Ukázka_monosti_vyuití_programu_OpenJUMP_v_SOA" > > I would like to convert this string to plain ascii (using some lookup > table for latin2) > > to get > > -> Ukazka_moznosti_vyuziti_programu_OpenJUMP_v_SOA You may try python-elinks <http://freshmeat.net/projects/python-elinks/>: >>> import elinks >>> print >>> "Ukázka_mo\236nosti_vyu\236ití_programu_OpenJUMP_v_SOA".decode('Windows-1250').encode('ASCII', >>> 'elinks') Ukazka_moznosti_vyuziti_programu_OpenJUMP_v_SOA -- Jakub Wilk -- http://mail.python.org/mailman/listinfo/python-list