Skip to content

Commit 51b73b6

Browse files
committed
samples for subprocess
1 parent de30e87 commit 51b73b6

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import argparse
2+
3+
parser = argparse.ArgumentParser()
4+
parser.add_argument("--callee_path", type=str)
5+
args = parser.parse_args()
6+
7+
print('callee: {}'.format(args.callee_path))
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import sys
2+
import argparse
3+
import subprocess
4+
5+
def parse_args():
6+
parser = argparse.ArgumentParser()
7+
parser.add_argument("--path", type=str)
8+
args = parser.parse_args()
9+
return args
10+
11+
if __name__ == "__main__":
12+
args = parse_args()
13+
print('caller: {} {}'.format(__file__, args.path))
14+
15+
theproc0 = subprocess.Popen([sys.executable, "-u", "callee.py", "--callee_path", "000"])
16+
theproc1 = subprocess.Popen([sys.executable, "-u", "callee.py", "--callee_path", "111"])
17+
theproc0.communicate()
18+
theproc0.communicate()

0 commit comments

Comments
 (0)