I have a script where I launch with popen a shell command.
The problem is that the script doesn’t wait until that popen command is finished and go continues right away.
om_points = os.popen(command, "w")
.....
How can I tell to my Python script to wait until the shell command has finished?
Depending on how you want to work your script you have two options. If you want the commands to block and not do anything while it is executing, you can just use
subprocess.call.If you want to do things while it is executing or feed things into
stdin, you can usecommunicateafter thepopencall.As stated in the documentation,
waitcan deadlock, so communicate is advisable.