Is it possible to retrieve items from a Python dictionary in the order that they were inserted?
|
1
|
|
|
|
|
|
The standard python There is a proposal (PEP 372) to add an "ordered dictionary" (that keeps track of the order of insertion) to the You might want to stick with the reference implementation in the PEP if you want your code to be compatible with the "official" version (if the proposal is eventually accepted). |
|||
|
|
|
|
You can't do this with the base dict class -- it's ordered by hash. You could build your own dictionary that is really a list of key,value pairs or somesuch, which would be ordered. |
||
|
|
|
The other answers are correct; it's not possible, but you could write this yourself. However, in case you're unsure how to actually implement something like this, here's a complete and working implementation that subclasses dict which I've just written and tested. (Note that the order of values passed to the constructor is undefined but will come before values passed later, and you could always just not allow ordered dicts to be initialized with values.)
|
||||
|
|
|
if you don't need the dict functionality, and only need to return tuples in the order you've inserted them, wouldn't a queue work better? |
||
|
|
|
|
I've used StableDict before with good success. |
||
|
|
|
|
Or, just make the key a tuple with time.now() as the first field in the tuple. Then you can retrieve the keys with dictname.keys(), sort, and voila! Gerry |
||
|
|
|
|
It's not possible unless you store the keys in a separate list for referencing later. |
||
|
|
|
|
Or use any of the implementations for the PEP-372 described here, like the odict module from the pythonutils. I successfully used the pocoo.org implementation, it is as easy as replacing your
with
and require just this file |
|||
|
|
