up vote 0 down vote favorite
share [g+] share [fb]

Im trying to call an external python script, and so far i was able to do so successfully using:

os.system("START fileNameHere")

However right now im running in the console, and i want the contents of the other python file to be shown in the same console. ATM it shows it in a separate console.

Thanks in Advance.

link|improve this question

25% accept rate
feedback

1 Answer

up vote 1 down vote accepted

This outta do it.

import subprocess

p = subprocess.Popen('command', shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
    for line in p.stdout.readlines():
        print line,
retval = p.wait()
link|improve this answer
nope, doesnt work. The script opens in another separate window – Larry Jul 31 '10 at 19:09
@Larry, Works fine for me, what OS are are you using? – Anders Jul 31 '10 at 19:34
@Larry, Ok, Windows. The START command is listed as: "Enables a user to start a separate window in Windows from the Windows command line." Don't use it if you don't want the output to be in another window! Simply run fileNameHere and don't use START. – Anders Jul 31 '10 at 19:41
Great Stuff, that got it working (removing the START). Thanks – Larry Aug 1 '10 at 0:10
feedback

Your Answer

 
or
required, but never shown

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