views:

608

answers:

2

While Python's standard library has a module for curses, that seems to require a lot of fairly low-level handling.

Is there a simpler way to get started with writing a basic curses UI which includes standard elements like checkboxes, input fields etc.?

I've found urwid, but not sure whether that's the state of the art.

+3  A: 

pycdk is a Python interface to the CDK ncurses widget library, which is pretty high-level. Might do what you want.

ire_and_curses
That looks useful - will start playing with it, thanks!
AnC
+4  A: 

Also check out Urwid:

http://excess.org/urwid/

Maybe he already did.
Dennis Williamson