Re: Any examples/documentation for python-newt

2010-03-27 Thread Harishankar
On Sat, 27 Mar 2010 14:56:30 +, Grant Edwards wrote: > On 2010-03-27, Harishankar wrote: > >>> I've used it for some trivial stuff, but not for anything very >>> sophisticated. Redhat's text-mode installer program (anaconda) was >>> written in Python using Newt (I believe it is why Newt was

Re: Any examples/documentation for python-newt

2010-03-27 Thread Grant Edwards
On 2010-03-27, Harishankar wrote: >> I've used it for some trivial stuff, but not for anything very >> sophisticated. Redhat's text-mode installer program (anaconda) was >> written in Python using Newt (I believe it is why Newt was invented). >> That's probably the most "full featured" example I

Re: Any examples/documentation for python-newt

2010-03-27 Thread Harishankar
On Sat, 27 Mar 2010 14:44:23 +, Grant Edwards wrote: > On 2010-03-27, Harishankar wrote: >> I am writing a fairly featureful TUI in python and I figured newt is >> the best lightweight TUI which actually offers widgets. curses is low >> level and its text editing capabilities are poor while U

Re: Any examples/documentation for python-newt

2010-03-27 Thread Grant Edwards
On 2010-03-27, Harishankar wrote: > I am writing a fairly featureful TUI in python and I figured newt is the > best lightweight TUI which actually offers widgets. curses is low level > and its text editing capabilities are poor while UIs like urwid and stfl > too complex for simple programs lik

Any examples/documentation for python-newt

2010-03-27 Thread Harishankar
I am writing a fairly featureful TUI in python and I figured newt is the best lightweight TUI which actually offers widgets. curses is low level and its text editing capabilities are poor while UIs like urwid and stfl too complex for simple programs like the ones I am creating. Could anybody po