Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Interact with standard input/output of another process

I have an executable example.exe. This executable's behaviour is as follows:

1.Waits for input from user
2.Performs some operations, based on input
3.goto 1

How can I use subprocess or a similar module to interact with executable?

I wish to run the process, insert input, receive output, then insert additional inputs based on the output received.

like image 956
Farseer Avatar asked Oct 20 '22 15:10

Farseer


1 Answers

from subprocess import Popen, PIPE

process = Popen([r'path/to/process', 'arg1', 'arg2', 'arg3'], stdin=PIPE, stdout=PIPE)

to_program = "something to send to the program's stdin"
while process.poll() == None:  # While not terminated
    process.stdin.write(to_program)

    from_program = process.stdout.readline()  # Modify as needed to read custom amount of output
    if from_program == "something":  # send something new based on stdout
       to_program = "new thing to send to program"
    else:
       to_program = "other new thing to send to program"

print("Process exited with code {}".format(process.poll()))
like image 136
icedtrees Avatar answered Oct 22 '22 07:10

icedtrees