Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am calling an external program within python script using subprocess. The external program produces a lot of output. I need to capture the output of this program. The current code is something like this:

process = subprocess.Popen('cmd.exe', shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
process.stdin.write('gams "indus89.gms"\r\n')
while process.poll() != None:
    line = process.stdout.readline()
    print line

The error I am getting with this code is

The process tried to write to a nonexistent pipe.

If I use the following code:

process = subprocess.Popen('cmd.exe', shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
process.stdin.write('gams "indus89.gms"\r\n')
o, e = process.communicate()
print o 

then the output of the program is not captured.

How should I alter my code so that I can capture the output of the third party program while it runs?

share|improve this question
2  
why do you use cmd.exe and shell=False, why not 'gams "indus89.gms"' with shell=True? – Antti Haapala May 22 '12 at 21:52

1 Answer

up vote 2 down vote accepted

I believe using Popen is overkill for what you're attempting.

Try:

output = subprocess.check_output('gams "indus89.gms"\r\n', shell=True)

Hopefully that will work in your environment.

share|improve this answer
I tried that but still I couldn't capture the output that I need to capture. – Aditya Gore May 22 '12 at 22:09
@AdityaGore is anything being returned by the command? – jtmoulia May 22 '12 at 22:17
Sorry, I was running the old code. Everything is working fine now. Thanks for your help.. – Aditya Gore May 22 '12 at 22:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.