How can I handle keyboard events in python? More exactly I need to manage keyboard arrows and some other keys for my command-line application. Is there a module for this or I ne
You're probably looking for a python (n)curses library. This will allow to "get around" your terminal buffering and work with key-presses directly.