Answers for "python start process in background and get pid"

0

python start process in background and get pid

from subprocess import Popen

# Subprocess Command
cmd = "python3 another_process.py"
p = Popen(cmd.split())
print("Process ID:", p.pid)

# Check the status of process
# poll() method returns 'None' if the process is running else returns the exit code
print(p.poll())
Posted by: Guest on March-18-2021

Code answers related to "python start process in background and get pid"

Python Answers by Framework

Browse Popular Code Answers by Language