Skip to content Skip to sidebar Skip to footer

Python Equivalent Of Java Outputstream?

Is there a Python equivalent / pseudo-equivalent to java's OutputStream or PrintWriter? I want to be able to have a handle that represents either a stream like stdout/sterr, or a f

Solution 1:

"Abstracting away what type it is" happens automatically in Python - it's called 'duck typing'. Just pass any file-like object to the function, and have it use the interface of file-like objects.

FWIW, the standard input/output/error streams are represented by stdin, stdout and stderr in the sys module. To get file-like objects that read and write strings, use the StringIO module.

Solution 2:

Solution 3:

you just need an object that implements the methods that files, pipes, streams, etc... also implement. for instance, i use this class sometimes when i want to detach my python program and i want to redirect sys.stderr/sys.stdout:

classLog(object):
    """used for logging for background process"""def__init__(self, f):
            self.f = f
    defwrite(self, s):
            self.f.write(s)
            self.f.flush()
sys.stdout = sys.stderr = Log(open('/tmp/daemonlog', 'a+'))

Post a Comment for "Python Equivalent Of Java Outputstream?"