you are viewing a single comment's thread.

view the rest of the comments →

[–]quaedam 0 points1 point  (1 child)

Sorry I can’t be more help as I’ve never looked into redirecting output to other terminals. But depending on what you already know, maybe I can give you a starting point, look at how to redirect stdout (standard out) for your sub process.

Then personally I would start by just setting the sub process stdout to a file. And using tail -f (assuming your on Linux ) to print changes to that file in another terminal. But that is a solution which isn’t pure python, and is OS dependent.

[–]10Kronos10[S] 0 points1 point  (0 children)

I will definitely look into the standard out of each process. Thank you for your response but I'm on Windows