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

I'm using python's ftplib to write a small FTP client, but some of the functions in the package don't return string output, but print to stdout. I want to redirect stdout to an object which I'll be able to read the output from.

I know stdout can be redirected into any regular file with:

stdout = open("file", "a")

But I prefer a method that doesn't uses the local drive.

I'm looking for something like the BufferedReader in Java that can be used to wrap a buffer into a stream.

share|improve this question

3 Answers

up vote 44 down vote accepted
from cStringIO import StringIO
import sys

old_stdout = sys.stdout
sys.stdout = mystdout = StringIO()

# blah blah lots of code ...

sys.stdout = old_stdout

# examine mystdout.getvalue()
share|improve this answer
15  
+1, you don't need to keep a reference to the original stdout object, as it is always available at sys.__stdout__. See docs.python.org/library/sys.html#sys.__stdout__. – Ayman Hourieh Aug 2 '09 at 14:00
31  
Well, that's an interesting debate. The absolute original stdout is available, but when replacing like this, it's better to use an explicit save as I've done, since someone else could have replaced stdout and if you use stdout, you'd clobber their replacement. – Ned Batchelder Aug 2 '09 at 14:25
1  
would this operation in one thread alter the behavior of other threads? I mean is it threadsafe? – Anuvrat Parashar Sep 13 '12 at 11:19
@AnuvratParashar: I think that would be an excellent question to ask on its own. – Dennis Williamson Nov 27 '12 at 19:47

Just to add to Ned's answer above: you can use this to redirect output to any object that implements a write(str) method.

This can be used to good effect to "catch" stdout output in a GUI application.

Here's a silly example in PyQt:

import sys
from PyQt4 import QtGui

class OutputWindow(QtGui.QPlainTextEdit):
def write(self, txt):
    self.appendPlainText(str(txt))

app = QtGui.QApplication(sys.argv)
out = OutputWindow()
sys.stdout=out
out.show()
print "hello world !"
share|improve this answer
This does not work, it locks the app, but i can't tell why. – Guillermo Siliceo Trueba Mar 20 '11 at 14:56
2  
Works for me with python 2.6 and PyQT4. Seems strange to down vote working code when you can't tell why it doesn't work ! – Bethor Mar 20 '11 at 15:18
Thank you. This answer made my day. – BlaXpirit Nov 26 '11 at 12:57
don't forget to add flush() too! – Will Mar 13 at 13:04

Use pipe() and write to the appropriate file descriptor.

http://www.python.org/doc/2.3/lib/os-fd-ops.html

share|improve this answer

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.