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...