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

How can I get the output of a process run using subprocess.call()?

Passing a StringIO.StringIO object to stdout gives this error:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/subprocess.py", line 444, in call
    return Popen(*popenargs, **kwargs).wait()
  File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/subprocess.py", line 588, in __init__
    errread, errwrite) = self._get_handles(stdin, stdout, stderr)
  File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/subprocess.py", line 945, in _get_handles
    c2pwrite = stdout.fileno()
AttributeError: StringIO instance has no attribute 'fileno'
>>> 
share|improve this question
Mike's answer is correct. Note that StringIO works like a file in most cases but not all. It doesn't work in your case because the multiprocessing module assumes actual files in some cases. This may have been fixed: see bugs.python.org/issue5313 for a related bug. – Michael Greene Jan 3 '10 at 22:16
Actually, communicate() uses select.select(), which only accepts file descriptors, so it isn't really a bug. I was quite confused by this when I first encountered it and exploring the depths of subprocess.py taught me a lot!. – Mike Jan 3 '10 at 22:25

3 Answers

up vote 9 down vote accepted

You need to pass subprocess.PIPE for the stderr, stdout, and/or stdin parameters.

Then you read from the pipes by using the communicate() method.

The reasoning is that the file-like object used by subprocess must have a real file descriptor, and thus implement the fileno() method. Just using any file-like object won't do the trick.

See here for more info.

share|improve this answer
21  
this page docs.python.org/library/subprocess.html#module-subprocess discourages using subprocess.PIPE, any idea how to overcome this? – Halst Dec 13 '11 at 20:55
1  
also, the question especifies using subprocess.call and Mike's answer is using Popen in fact, as subprocess.call only return the returncode, but no means of accessing any of the streams. That's if using 2.6, if using 2.7 @Sergi answer could be used – Willyfrog Nov 12 '12 at 12:17

If you have Python version >= 2.7, you can use subprocess.check_output which basically does exactly what you want (it returns standard output as string).

share|improve this answer
3  
Found another answer with working code. Please upvote if you used it. – Droogans Jul 19 '12 at 13:17

I recently just figured out how to do this, and here's some example code from a current project of mine:

#Getting the random picture.
#First find all pictures:
import shlex, subprocess
cmd = 'find ../Pictures/ -regex ".*\(JPG\|NEF\|jpg\)" '
#cmd = raw_input("shell:")
args = shlex.split(cmd)
output,error = subprocess.Popen(args,stdout = subprocess.PIPE, stderr= subprocess.PIPE).communicate()
#Another way to get output
#output = subprocess.Popen(args,stdout = subprocess.PIPE).stdout
ber = raw_input("search complete, display results?")
print output
#... and on to the selection process ...

You now have the output of the command stored in the variable "output". "stdout = subprocess.PIPE" tells the class to create a file object named 'stdout' from within Popen. The communicate() method, from what I can tell, just acts as a convenient way to return a tuple of the the output and the errors from the process you've run. Also, the process is run when instantiating Popen.

share|improve this answer
"another way to get output" is confusing: a line above output is a string, a line below output is a file-like object. – J.F. Sebastian Nov 22 '12 at 16:39

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.