I like the pprint module in Python. I use it a lot for testing and debugging. I frequently use the width option to make sure the output fits nicely within my terminal window.

It has worked fine until they added the new ordered dictionary type in Python 2.7 (another cool feature I really like). If I try to pretty-print an ordered dictionary, it doesn't show nicely. Instead of having each key-value pair on its own line, the whole thing shows up on one long line, which wraps many times and is hard to read.

Does anyone here have a way to make it print nicely, like the old unordered dictionaries? I could probably figure something out, possibly using the PrettyPrinter.format method, if I spend enough time, but I am wondering if anyone here already knows of a solution.

UPDATE: I filed a bug report for this. You can see it at http://bugs.python.org/issue10592.

link|improve this question

55% accept rate
5  
Might want to consider opening a bug as well. – Ignacio Vazquez-Abrams Nov 29 '10 at 5:29
I am thinking of doing that. I will post an update here if I do. – mikez302 Nov 29 '10 at 5:36
1  
Suggest adding a comment about ordered dictionary to bugs.python.org/issue7434 – Ned Deily Nov 29 '10 at 8:51
feedback

6 Answers

As a temporary workaround you can try dumping in json-format. You loose some type-information, but it looks nice and keeps the order.

import json

pprint(data, indent=4)
# ^ugly

print(json.dumps(data, indent=4))
# ^nice
link|improve this answer
feedback

The following will work if the order of your OrderedDict is an alpha sort, since pprint will sort a dict before print.

pprint(dict(o.items()))
link|improve this answer
Since OrderedDicts are ordered by insertion order, so this probably applies to a small percentage of uses. Regardless, converting the OD it to a dict should avoid the issue of everything being placed on one line. – martineau Nov 29 '10 at 9:07
feedback
def pprint_od(od):
    print "{"
    for key in od:
        print "%s:%s,\n" % key, od[key]
    print "}"

There you go ^^

for item in li:
    pprint_od(item)

or

(pprint_od(item) for item in li)
link|improve this answer
I am looking for some way to have one function that can pretty-print OrderedDicts as well as other types. I don't see how I would use your function to pretty-print, say, a list of OrderedDicts. – mikez302 Nov 29 '10 at 5:38
Let me change it – Jakob Bowyer Nov 29 '10 at 5:40
-1 The pprint_od() function doesn't work - the for key, item in od statement results in a ValueError: too many values to unpack and the only output indented is the final " }" and the key, item in the print statement need to be in parenthesis. There you go ^^ – martineau Nov 29 '10 at 9:33
and the ending \n makes that output double-spaced. Might be some kind of record for errors per lines of code. – martineau Nov 29 '10 at 9:39
Shit sorry woops. – Jakob Bowyer Nov 29 '10 at 12:35
feedback

Here's another answer that works by overriding and using the stock pprint() function internally. Unlike my earlier one it will handle OrderedDict's inside another container such as a list and should handle any optional keyword arguments given -- however it does not have the same degree of control over the output that the other afforded.

It works by redirecting the stock function's output into a temporary buffer and then word wraps that before sending it on to the output stream. While the final output produced isn't always real pretty, it may be "good enough" to use as a workaround.

Update

Simplified by using standard library textwrap module.

from collections import OrderedDict
from cStringIO import StringIO
from pprint import pprint as pp_pprint
import sys
import textwrap

def pprint(object, **kwrds):
    try:
        width = kwrds['width']
    except KeyError: # unlimited, use stock function
        pp_pprint(object, **kwrds)
        return
    buffer = StringIO()
    stream = kwrds.get('stream', sys.stdout)
    kwrds.update({'stream': buffer})
    pp_pprint(object, **kwrds)
    words = buffer.getvalue().split()
    buffer.close()

    # word wrap output onto multiple lines <= width characters
    print >> stream, textwrap.fill(' '.join(words), width=width)

d = dict((('john',1), ('paul',2), ('mary',3)))
od = OrderedDict((('john',1), ('paul',2), ('mary',3)))
lod = [OrderedDict((('john',1), ('paul',2), ('mary',3))),
       OrderedDict((('moe',1), ('curly',2), ('larry',3))),
       OrderedDict((('weapons',1), ('mass',2), ('destruction',3)))]

pprint(d, width=40)
# {'john': 1, 'mary': 3, 'paul': 2}

pprint(od, width=40)
# OrderedDict([('john', 1), ('paul', 2),
# ('mary', 3)])

pprint(lod, width=40)
# [OrderedDict([('john', 1), ('paul', 2),
# ('mary', 3)]), OrderedDict([('moe', 1),
# ('curly', 2), ('larry', 3)]),
# OrderedDict([('weapons', 1), ('mass',
# 2), ('destruction', 3)])]
link|improve this answer
I tried that and it works. As you said, it is not the prettiest, but it is the best solution I have seen so far. – mikez302 Dec 1 '10 at 0:17
feedback

You could redefine pprint() and intercept calls for OrderedDict's. Here's a simple illustration. As written, the OrderedDict override code ignores any optional stream, indent, width, or depth keywords that may have been passed, but could be enhanced to implement them. Unfortunately this technique doesn't handle them inside another container, such as a list of OrderDict's

from collections import OrderedDict
from pprint import pprint as pp_pprint

def pprint(obj, *args, **kwrds):
    if not isinstance(obj, OrderedDict):
        # use stock function
        return pp_pprint(obj, *args, **kwrds)
    else:
        # very simple sample custom implementation...
        print "{"
        for key in obj:
            print "    %r:%r" % (key, obj[key])
        print "}"

l = [10, 2, 4]
d = dict((('john',1), ('paul',2), ('mary',3)))
od = OrderedDict((('john',1), ('paul',2), ('mary',3)))
pprint(l, width=4)
# [10,
#  2,
#  4]
pprint(d)
# {'john': 1, 'mary': 3, 'paul': 2}

pprint(od)
# {
#     'john':1
#     'paul':2
#     'mary':3
# }
link|improve this answer
feedback

The pprint() method is just invoking the repr() method of things in it, and OrderedDict doesn't appear to do much in it's method (or doesn't have one or something). Here's a cheap solution that should work IF YOU DON'T CARE ABOUT THE ORDER BEING VISIBLE IN THE PPRINT OUTPUT, which may be a big if:

class PrintableOrderedDict(OrderedDict):
    def __repr__(self):
        return dict.__repr__(self)

I'm actually surprised that the order isn't preserved...ah well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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