I want to make python file which opens two programs. This two programs have to get input from each other multiple times. I opened two programs and know how to give input to one program, but i don't know how to give input multiple time on one program and get output multiple time. My code is like this.
subprocess.call("/usr/bin/gcc -o p1 "+path1,shell=True)
subprocess.call("/usr/bin/gcc -o p2 "+path2,shell=True)
cmd_1 = subprocess.Popen("./p1",shell = True,stdin = subprocess.PIPE,stdout = subprocess.PIPE,stderr = subprocess.PIPE)
cmd_2 = subprocess.Popen("./p2",shell = True,stdin = subprocess.PIPE,stdout = subprocess.PIPE,stderr = subprocess.PIPE)
std_out_1 = cmd_1.stdout
std_out_2 = cmd_2.stdout
for line in std_out_1.readlines():
print(line.decode('ascii'))
for line in std_out_2.readlines():
print(line.decode('ascii'))
Now this program just get program output. I want to give input N times for each program and get output N times. So I expect my code to be like this.
give_input(n)
for i in range(n):
t_1 = get_output(t_2) //give input t_2, and get output t_1
t_2 = get_output(t_1) //give input t_1, and get output t_2