how to send the output of pprint module to a log file

Question:

I have the following code:

logFile=open('c:\temp\mylogfile'+'.txt', 'w')
pprint.pprint(dataobject)

how can i send the contents of dataobject to the log file on the pretty print format ?

Asked By: AKM

||

Answers:

with open("yourlogfile.log", "w") as log_file:
    pprint.pprint(dataobject, log_file)

See the documentation.

Answered By: livibetter

Please use pprint.pformat, which returns a formated string that can be dumped directly to file.

>>> import pprint
>>> with open("file_out.txt", "w") as fout:
...     fout.write(pprint.pformat(vars(pprint)))
... 

Reference:

http://docs.python.org/2/library/pprint.html

Answered By: ddalex

For Python 2.7

logFile = open('c:\temp\mylogfile'+'.txt', 'w')
pp = pprint.PrettyPrinter(indent=4, stream=logFile)
pp.pprint(dataobject)   #you can reuse this pp.print
Answered By: Kaiwen Sun
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.