Tagged Questions

9
votes
3answers
340 views

Can I get JSON to load into an OrderedDict in Python?

Ok so I can use an OrderedDict in json.dump. That is, an OrderedDict can be used as an input to JSON. But can it be used as an output? If so how? In my case I'd like to load into an OrderedDict so I ...
7
votes
5answers
1k views

Any way to properly pretty-print ordered dictionaries in Python?

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 ...
4
votes
3answers
135 views

Is possible to override the {…} notation so i get an OrderedDict() instead of a dict()?

EDIT: I want to use a .py file like a config file. So using the {...} notation i can create a dictionary using string as keys but the definition order is lost in a standard python dictionary. My ...
4
votes
1answer
2k views

Using an ordered dict as object dictionary in python

I don't know why this doesn't work: I'm using the odict class from PEP 372, but I want to use it as a __dict__ member, i.e.: class Bag(object): def __init__(self): self.__dict__ = ...
3
votes
2answers
1k views

What is the best ordered dict implementation in python?

I've seen (and written) a number of implementations of this. Is there one that is considered the best or is emerging as a standard? What I mean by ordered dict is that the object has some concept of ...
1
vote
2answers
157 views

Python OrderedDict ordered by date

I am trying to use an OrderedDict (Raymond Hettingers version for pre2.7 Python) where my keys are dates. However it does not order them correctly, I imagine it may be ordering based on the ID. Does ...
0
votes
4answers
75 views

Get first N key pairs from an Ordered Dictionary to another one in python

I have an ordered dictionary (OrderedDict) sorted by value. How can I get the top (say 25) key values and add them to a new dictionary? For example: I have something like this ...
0
votes
2answers
66 views

Mapping dictionary with rows values

My problem is how to map dictionary values to row indices. I have a dictionary like: ordered_dict = OrderedDict(1:"id", 2:"name", 3:"address", 4:"salary") And I got rows from a select query like: ...
0
votes
2answers
121 views

How to know the position of items in a Python's ordered dictionary

Can we know the position of items in Python's ordered dictionary ? For example: If I have dictionary : // Ordered_dict is OrderedDictionary Ordered_dict = {"fruit": "banana", "drinks": "water", ...
0
votes
3answers
108 views

Find lines beginning with same string and keep last occurance

I have this data: E 71484666NC 1201011060240260 387802-1227810 1022 25 0 5 2 313D 0 1G5 E 71484666NC 1201011060240263 387902-1227910 1300 10 0 2 1 300D 0 1A5 E 10115693AK ...