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

I have an external executable file which i am trying to run from a Python script. CMD executable runs but without generating output. Probably it exit before output can be generated. Any suggestion about how to delay exit until outputs are generated?

import subprocess, sys
from subprocess import Popen, PIPE
exe_str = r"C:/Windows/System32/cmd C:/temp/calc.exe"

parent = subprocess.Popen(exe_str,  stderr=subprocess.PIPE)
share|improve this question
2  
Probably better to ask this on Stackoverflow? – Simbamangu Nov 1 '12 at 13:44
1  
Is the question related to GIS? – Mapperz Nov 1 '12 at 14:12
Maybe you are right. Input data is elevation and flow direction that is why i posted it here. – Ibe Nov 1 '12 at 16:20
DOS? Do you not mean a command line interface (CLI) appliction? MS-DOS was discontinued over 12 years ago. – blah238 Nov 2 '12 at 1:36
yes I mean command prompt. thanks for clarifying it. – Ibe Nov 2 '12 at 1:40
show 1 more comment

migrated from gis.stackexchange.com Nov 4 '12 at 20:53

2 Answers

The os.system method is depreciated and should not be used in new applications. The subprocess module is the pythonic way to do what you require.

Here is an example of some code I wrote a few weeks ago using subprocess to load files, the command you need to use to delay exit until data has been received and the launched program completes is wait():

import subprocess

cmd = "c:\\file.exe"
process = subprocess.Popen(cmd, stdout=subprocess.PIPE, creationflags=0x08000000)
process.wait()

creationflags=0x08000000 is an optional parameter which suppresses the launch of a window, which can be useful if the program you are calling does not need to be directly seen.

share|improve this answer
It is still not generating outputs. Runs perfectly from cmd window but no output using pythonic way as you suggested. – Ibe Nov 2 '12 at 1:37

use subprocess.call, more info here:

import subprocess
subprocess.call(["C:\\temp\\calc.exe"])

or

import os
os.system('"C:/Windows/System32/notepad.exe"')

i hope it helps you...

share|improve this answer
It runs but without generating output. I tested executable using cmd and it requires at least 2-3 sec before generating output. This is the issue, how to make it stay for 3 sec before exit using python? – Ibe Nov 1 '12 at 12:53
1  
import time time.sleep(3) – Aragon Nov 1 '12 at 12:55
Weird. Even with 3 sec condition it didn't generate any output. I increased time but no use. Not sure what else could be the problem. – Ibe Nov 1 '12 at 13:18

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.