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

How do I redirect stdout to an arbitrary file in Python?

EDIT at commenter's request:

When a long-running Python script (e.g, web application) is started from within the ssh session and backgounded, and the ssh session is closed, the application will raise IOError and fail the moment it tries to write to stdout. I needed to find a way to make the application and modules output to a file rather than stdout to prevent failure due to IOError. Currently, I employ nohup to redirect output to a file, and that gets the job done, but I was wondering if there was a way to do it without using nohup, out of curiosity.

I have already tried sys.stdout = open('somefile', 'w'), but this does not seem to prevent some external modules from still outputting to terminal (or maybe the sys.stdout = ... line did not fire at all). I know it should work from simpler scripts I've tested on, but I also didn't have time yet to test on a web application yet.

share|improve this question
3  
That's not really a python thing, it's a shell function. Just run your script like script.p > file – Falmarri Jan 13 '11 at 0:52
I currently solve the problem using nohup, but I thought there might be something more clever... – bvukelic Jan 13 '11 at 0:59
@foxbunny: nohup? Why simply someprocess | python script.py? Why involve nohup? – S.Lott Jan 13 '11 at 1:39
@S.Lott: Why someprocess | python script.py? – bvukelic Jan 14 '11 at 13:22
@foxbunny: My mistake. Your question is badly worded. I thought you wanted to redirect stdout of some process into a Python program. It appears, from the accepted answer, that you're doing something different. I would still like to know how you're using nohup. And why. – S.Lott Jan 14 '11 at 15:23
show 3 more comments

6 Answers

up vote 36 down vote accepted

If you want to do the redirection within the Python script, set sys.stdout to an file object does the trick:

import sys
sys.stdout = open('file', 'w')
print 'test'

A far more common method is to use shell redirection when executing (same on Windows and Linux):

$ python foo.py > file
share|improve this answer
If you're on Windows watch out for Windows bug - Cannot redirect output when I run Python script on Windows using just script's name – Piotr Dobrogost Oct 4 '12 at 11:00
It doesn't work with from sys import stdout, maybe because it creates a local copy. Also you can use it with with, e.g. with open('file', 'w') as sys.stdout: functionThatPrints(). You can now implement functionThatPrints() using normal print statements. – mgold Dec 13 '12 at 0:07
It's best to keep a local copy, stdout = sys.stdout so you can put it back when you're done, sys.stdout = stdout. That way if you're being called from a function that uses print you don't screw them up. – mgold Dec 20 '12 at 15:06

you can try this too much better

import sys

class Logger(object):
    def __init__(self, filename="Default.log"):
        self.terminal = sys.stdout
        self.log = open(filename, "a")

    def write(self, message):
        self.terminal.write(message)
        self.log.write(message)

sys.stdout = Logger("yourlogfilename.txt")
print "Hello world !" # this is should be saved in yourlogfilename.txt
share|improve this answer
Any suggestions for piping to logger or syslog? – dsummersl Mar 8 at 17:08

The other answers didn't cover the case where you want forked processes to share your new stdout.

To do that:

from os import open, close, dup

old = dup(1)
close(1)
open("file", O_WRONLY) # should open on 1

..... do stuff and then restore

close(1)
dup(old) # should dup to 1
close(old) # get rid of left overs
share|improve this answer
Thanks for the tip! – bvukelic Jul 25 '12 at 12:28
2  
one needs to replace the 'w' attribute with, os.O_WRONLY|os.O_CREATE ... can't send strings into the "os" commands! – Ch'marr Jul 26 '12 at 21:52
import sys
sys.stdout = open('stdout.txt', 'w')
share|improve this answer

Comment on Yam's answer, which is a very helpful way to redirect non-Python stdout text:

Insert a sys.stdout.flush() before the close(1) statement to make sure the redirect 'file' file gets the output.

Also, you can use a tempfile.mkstemp() file in place of 'file'.

And be careful you don't have other threads running that can steal the os's first file handle after the os.close(1) but before the 'file' is opened to use the handle.

share|improve this answer
Great tips. Thanks. – bvukelic Dec 6 '12 at 16:14

Quoted from PEP 343 -- The "with" Statement (added import statement):

Redirect stdout temporarily:

import sys
from contextlib import contextmanager
@contextmanager
def stdout_redirected(new_stdout):
    save_stdout = sys.stdout
    sys.stdout = new_stdout
    try:
        yield None
    finally:
        sys.stdout = save_stdout

Used as follows:

with opened(filename, "w") as f:
    with stdout_redirected(f):
        print "Hello world"

This isn't thread-safe, of course, but neither is doing this same dance manually. In single-threaded programs (for example in scripts) it is a popular way of doing things.

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.