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

Possible Duplicate:
Python output buffering

I would like to force Python's print function to output to the screen.

share|improve this question

marked as duplicate by wim, ekhumoro, dreamcrash, Greg Bacon, David Segonds Dec 10 '12 at 1:54

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

9 Answers

Running python -h, I see a command line option:

-u : unbuffered binary stdout and stderr; also PYTHONUNBUFFERED=x see man page for details on internal buffering relating to '-u'

Here is the relevant doc.

share|improve this answer

Using the -u command-line switch works, but it is a little bit clumsy in my opinion. I usually use a custom stdout, like this:

class flushfile(file):
  def __init__(self, f):
    self.f = f
  def write(self, x)
    self.f.write(x)
    self.f.flush()

import sys
sys.stdout = flushfile(sys.stdout)

... Now all your print calls (which use sys.stdout implicitly), will be automatically flushed.

share|improve this answer

Why not try using an unbuffered file?

f = open('xyz.log', 'a', 0)

OR

sys.stdout = open('out.log', 'a', 0)
share|improve this answer
1  
This solved my problem described here stackoverflow.com/questions/1654875/… . Thank you. Great tip. – chmike Nov 1 '09 at 13:06

Dan's idea doesn't quite work:

#!/usr/bin/env python
class flushfile(file):
    def __init__(self, f):
        self.f = f
    def write(self, x):
        self.f.write(x)
        self.f.flush()

import sys
sys.stdout = flushfile(sys.stdout)

print "foo"

The result:

Traceback (most recent call last):
  File "./passpersist.py", line 12, in <module>
    print "foo"
ValueError: I/O operation on closed file

I believe the problem is that it inherits from the file class, which actually isn't necessary. According to the docs for sys.stdout:

stdout and stderr needn’t be built-in file objects: any object is acceptable as long as it has a write() method that takes a string argument.

so changing

class flushfile(file):

to

class flushfile(object):

makes it work just fine.

share|improve this answer
2  
No vote because this IS @Dan's solution... (You should rather comment Dan's post instead of copying his solution) – gecco Jan 15 at 15:30

Also as suggested in this blog one can reopen sys.stdout in unbuffered mode:

sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)

Each stdout.write and print operation will be automatically flushed afterwards.

share|improve this answer
I like that. It solves my problem with raw_input not showing the prompt until after the input is given. :) – Almo May 29 '12 at 15:11

Loved Dan's solution! For python3 do:

import io,sys
class flushfile:
    def __init__(self, f):
        self.f = f
    def write(self, x):
        self.f.write(x)
        self.f.flush()
sys.stdout = flushfile(sys.stdout)
share|improve this answer
Inheriting from io.TextIOWrapper is useless. Even incorrect! (@Dan's solution without inheriting from file is correct -> @Kamil Kisiel) – gecco Jan 15 at 14:55
Didn't even think about not having to inherit, thanks! – Jonas Byström Jan 15 at 18:20

Here is my version, which provides writelines() and fileno(), too:

class Flushfile(object):
    def __init__(self, fd):
        self.fd = fd

    def write(self, x):
        ret=self.fd.write(x)
        self.fd.flush()
        return ret

    def writelines(self, lines):
        ret=self.writelines(line)
        self.fd.flush()
        return ret

    def flush(self):
        return self.fd.flush

    def close(self):
        return self.fd.close()

    def fileno(self):
        return self.fd.fileno()
share|improve this answer
import sys
print 'This will be output immediately.'
sys.stdout.flush()
share|improve this answer

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