start process in background get pid code example
Example: 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())