Skip to content Skip to sidebar Skip to footer

Threading + Raw_input In Python

I've got a Python script that does a bunch of things in a single subthread, and I'd like the main thread to spit out raw_input('> ') (to be handled by the main thread), and keep

Solution 1:

In addition to the curses suggestions, you might want to take a look at urwid, a higher-level, more python friendly library for dealing with console output.


Post a Comment for "Threading + Raw_input In Python"