vote up 1 vote down star

Possible Duplicate:
How can I capture the stdout output of a child process?

I'm running a cat-like program in bash from Python:

   import os

   os.system('cat foo.txt')

How do I get the output of the shell command back in the Python script, something like:

   s = somefunction('cat foo.txt')

?

UPD: Here is a related thread.

flag

80% accept rate

closed as exact duplicate by Paolo Bergantino, Jimmy, David, SilentGhost, Shog9 Jun 16 at 16:44

2 Answers

vote up 7 vote down check

Use the subprocess module.

from subprocess import Popen, PIPE

(stdout, stderr) = Popen(["cat","foo.txt"], stdout=PIPE).communicate()
print stdout
link|flag
vote up -1 vote down

This is what I do: Notice this keeps the stream around, instead of reading everything into memory.

import types,os,sys,re,subprocess as sub

# blocking system() / popen with error checking
# This will not throw if the command had an error.
def exec_cmd(cmd):
    try:
        p = sub.Popen(cmd, stdout=sub.PIPE, close_fds=True ,shell=True)
        ret = p.wait()
        return p.stdout,ret #, p.stdin
    except:
        return None, None


# Call it
s,ret = exec_cmd('cat foo.txt')
for line in s.readlines():
    print line
link|flag
don't use shell=True. It needlessy invokes your shell /bin/bash as a process and that invokes /bin/cat, as another process. Without shell=True you can execute /bin/cat directly, so you run only one process. – nosklo Jun 16 at 13:38
Oh, and never use a bare "except". Catch the appropriate exception instead - IOError, OSError, whatever. Bare excepts hide bugs and are a terrible practice. – nosklo Jun 16 at 13:39

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