Tagged Questions
3
votes
0answers
83 views
how to raise event getche() from process.Popen() - does not monitor stdin
I am launching a binary in windows using:
process = subprocess.Popen(cmd, stderr = subprocess.PIPE, stdin = subprocess.PIPE, stdout = ch.input)
ch.input comes from:
ch = InputStreamChunker('\n')
...
2
votes
1answer
95 views
Is it possible to use getch() to obtain inputs of varying length?
I've taken up the adventure of creating a relatively small command-line RPG to flex my newfound Python muscles, but I've already run into a conundrum. I'm using this implementation of getch():
def ...
2
votes
1answer
2k views
Reading a single character (getch style) in Python is not working in Unix
Any time I use the recipe at http://code.activestate.com/recipes/134892/ I can't seem to get it working. It always throws the following error:
Traceback (most recent call last):
...
...
1
vote
0answers
222 views
Can curses be avoided to get an “any key” getch prompt echoed to a raw_input() call?
I have a command line mini-app written in Python 2.7 that has a "press any key" style prompt, but that responds differently depending on what kind of key the user types.
If they type a character, ...
0
votes
1answer
63 views
Check for extra characters in Linux terminal buffer
I try to implement getch() function in Python, which should also return list of chars for special keys like F1-F12 and arrow keys. These special keys generate several chars in a sequence. Therefore ...