Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been reading a lot of questions/answers like this one. But i didn't succeed yet.

I'd like to run a script in background while the main script is active and i'd like to be able to check the background script output in order to dinamically change my Tkinter windows element (and its values).

I don't want to check the final output, but what the background script is flushing.

I tried with subprocess.Popen but every method associated with it freezes the main script and awaits for the final output.

Am i doing right by using subprocess or shall I use another library? My script is very light and i prefer to avoid lots of libraries...

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.