I have a data source which is best modeled with a dictionary (it is a collection of key=value pairs). For a specific visualization purpose, I need to provide a list-like data access interface (in addition to the regular dictionary interface), meaning that you should be able to do the following:
data["mykey"] # returns the associated value
data[12][0] # returns the 13th key in the dictionary
data[12][1] # returns the 13th value in the dictionary
I cannot find an appropriate facade implementation - if I store the indices as the dictionary key:
data[12] = ("mykey", "myval")
I can easily solve the last two cases, but I loose the ability to do the first. If I store data like
data["mykey"] = "myval"
I have to enumerate all keys and values in a temporary list before I can return elements.
Notice that all this implementations assume I am using an OrderedDict.
How would you provide both interfaces?
If you are curious, this is for creating a PyQt QAbstractTableModel where the underlying data container is a dictionary.
Thanks.
data.iteritems()any use in that application? – Craig McQueen Jun 21 '11 at 23:10iteritemsto create a cache or similar secondary structure to access the elements. – Arrieta Jun 22 '11 at 1:47