VxJasonxV
VxJasonxV

Reputation: 975

ncurses-like bindings in interpreted languages

Are there any bindings for ncurses or a similar menuing framework in interpreted languages that make the process of creating console menus and interacting with options absurdly simple?

I want to quickly prototype out a terminal-only configuration utility that runs on a Linux machine, in order to leverage some local resources previously installed.

Upvotes: 1

Views: 456

Answers (4)

Noufal Ibrahim
Noufal Ibrahim

Reputation: 72795

The Python standard library comes with a curses module that you can use for this. Also, here is a HOWTO.

Upvotes: 0

caf
caf

Reputation: 239171

The Dialog utility might be what you want.

Upvotes: 0

Nicholas Riley
Nicholas Riley

Reputation: 44331

urwid for Python is pretty simple (see some examples) and is actively maintained.

Upvotes: 0

Wesley Rice
Wesley Rice

Reputation: 2831

There's a PERL module exposing CURSES:FORM and CURSES:WIDGETS, though I'm sure they're quite ancient. They may be fine for prototyping, however.

http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/tools.html#PERLCURSES

Upvotes: 1

Related Questions