I've read the documentation and I've tried lots of things in the REPL, and Googled, but I can't for the life of me understand how subprocess.Popen works in Python.

Here is some Ruby code I am using:

IO.popen("some-process") do |io|
  while(line = io.gets)
    # do whatever with line
  end
end

How do I translate this into Python using subprocess.Popen?

link|improve this question

1  
There are many useful examples of how to use subprocess here: blog.doughellmann.com/2007/07/pymotw-subprocess.html – unutbu Mar 27 '10 at 21:07
feedback

2 Answers

up vote 2 down vote accepted

Probably the simplest "close relative" of your Ruby code in Python:

>>> import subprocess
>>> io = subprocess.Popen('ls', stdout=subprocess.PIPE).stdout
>>> for line in io: print(line.strip())
link|improve this answer
Note that reading from a Popen's stdout carries some risk of deadlocks. It's generally preferred to use communicate if blocking is acceptable. – Mike Graham Mar 28 '10 at 4:39
@Mike, if the subprocess just closes its stdin first thing (as ls does -- as some-process had better do in the Ruby code since it's never given any input!) no deadlock is possible in any OS I know of. Only subprocesses that use their stdin are at any conceivable risk -- so your "generally" is just totally inapplicable to both this Q and my A. – Alex Martelli Mar 28 '10 at 5:25
feedback
import subprocess

process = subprocess.Popen(['ls',], stdout=subprocess.PIPE)
print process.communicate()[0]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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