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.

link|improve this question

78% accept rate
feedback

2 Answers

up vote 4 down vote accepted

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

link|improve this answer
That looks useful - will start playing with it, thanks! – AnC Sep 17 '09 at 9:10
feedback

Also check out Urwid:

http://excess.org/urwid/

link|improve this answer
2  
Maybe he already did. – Dennis Williamson Dec 22 '09 at 9:26
1  
Off-topic, but useful and somewhat related: pudb is a very handy python debugger written with Urwid – Denilson Sá Oct 5 '11 at 6:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.