In my python linux console application, I use curses to handle data mapping. At the same time, I would like to have an input line for entering commands, pretty much in a good "irssi" style. By default curses getch () I will need to do a lot of coding to get the basic functionality of the raw_input function - arrow keys to move the cursor / view input history.
Is there an easy way to make this behavior work with curses, as it captures input events, and I can't just use the functions that sys.stdin reads.
source share