python指令碼中啟動另一個python指令碼
阿新 • • 發佈:2019-01-07
有時間,我們需要在一個python指令碼中調起另一個python指令碼,下面我嘗試了一下,
1.父指令碼如下:
2.子指令碼如下#coding:utf8 #!/usr/local/bin/python import time import datetime import os import sys import traceback import threading import subprocess ####################################################################################################### if __name__ == '__main__': print "===============================================" print time.strftime('[%Y-%m-%d %H:%M:%S]') print "===============================================" print "analyze start...." loader=subprocess.Popen(["/usr/bin/python", "/data/home/test/chaildren.py"]) ####loader=subprocess.Popen('python chaildren.py') ####錯誤,會彈出OSError: [Errno 2] No such file or directory returncode=loader.wait()######阻塞知道子程序完成 print "returncode= %s" %(returncode) ###列印子程序的返回碼 print "analyze finised!!!"
執行結果如下:#coding:utf8 #!/usr/local/bin/python import time import datetime import os import sys import traceback import threading if __name__ == '__main__': print "children start...." print time.strftime('[%Y-%m-%d %H:%M:%S]') time.sleep(10) print time.strftime('[%Y-%m-%d %H:%M:%S]') print "children finised!!!!"
需要注意的幾點有:
1.在linux環境下執行的時候可能會提示
OSError: [Errno 2] No such file or directory
這個時候,需要改成如下呼叫形式
subprocess.Popen(["/usr/bin/python", "/data/home/test/chaildren.py"])
2.預設情況下父子指令碼共享輸入輸出。