I've started playing around with writing a GUI for a bitcoin miner and right now I just have a window with a "Start" and "Stop" button and I've got those working so you click start and it uses self.p = subprocess.Popen(args) to open the process and self.p.terminate() to end the process. My next step is to read the speed of the miner from it's output. How do I read the output from the process?

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

you call:

out, err = p.communicate()
link|improve this answer
feedback

Use Popen.communicate to read the output. For example.

import subprocess

p = subprocess.Popen('ls', stdout=subprocess.PIPE, stderr=subprocess.PIPE)
# returns a tuple containing the the stdout and stderr of the program
res, err = p.communicate() 
link|improve this answer
Why the downvote? Did it not work? – Zhehao Mao Jun 24 '11 at 21:33
feedback

Your Answer

 
or
required, but never shown

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