On Nov 22, 3:58 am, NoName <[EMAIL PROTECTED]> wrote:
> Is it possible to interrupt loop (program) by pressing Q key like Ctrl-
> C?
> how can i hook user's keypress while program running?
>
> thnx

There's a quite complicated example here:

http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/203830

But it seems to just boil down to fiddling around with tty, and then
using select to read from sys.stdin to detect a keypress, and then
taking the appropriate action.

This will be different on Windows. If you really need this, it might
be worth looking for a library that will make key press detection
trivial. For example, this sort of thing is easy with pygame.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to