I'd like to know if it's possible to run a bash script inside a Python Script and get the bash script output "live" (not after the Python script ran the bash script, I know how to do that).
You'd probably ask me why I want to use a Python Script : actually I'd like build a nice CLI interface and I'm using Inquirer to do that. This interface allows the user to perform task that are actually performed using bash scripts. That's why I'm not using a bash script that executes other scripts.
subprocess.Popenclass and capture the output files (stderrandstdout).