In Python, an OrderedDict is a data structure that stores pairs of key, values. It also remembers the order that keys were first inserted. If a new entry overwrites an existing entry, the original insertion position is left unchanged.
0
votes
2answers
31 views
Python: Iterate alphabetically over OrderedDict
In a script I have an OrderedDict groups that gets fed key/value pairs alphabetically.
In another part of the script, I'm checking against files that have the same same as key like so:
for (key, ...
1
vote
1answer
26 views
OrderedDictionary and Dictionary
I was looking for a way to have my Dictionary enumerate its KeyValuePair in the same order that they were added. Now, Dictionary's doc clearly state that:
For purposes of enumeration, each item in ...
3
votes
2answers
77 views
Python OrderedDict iteration
Why does my python OrderedDict get initialized 'out of order'?
The solution here is less intriguing than the explanation. There's something here I just don't get, and perhaps an expanation would ...
5
votes
3answers
87 views
Rename a dictionary key
Is there a way to rename a dictionary key, without reassigning its value to a new name and removing the old name key; and without iterating through dict key/value?
In case of OrderedDict, do the same, ...
0
votes
2answers
49 views
change key to lower case for dict or OrderedDict
Following works for a dictionary, but not OrderedDict. For od it seems to form an infinite loop. Can you tell me why?
If the function input is dict it has to return dict, if input is OrderedDict it ...
0
votes
1answer
47 views
Accessing multiple dictionary values
I have two dictionaries in the below format
d=defaultdict(<class 'collections.OrderedDict'>, {u'1': OrderedDict([(1746L, 1), (2239L, 1)]), u'2': OrderedDict([(1965L, 2)]),u'3': ...
0
votes
1answer
65 views
Getting value by name from OrderedDictionary [closed]
I am looking for something like PHP's Associative Arrays that supports nesting too. For instance I am creating a Dictionary Object like following:
System.Collections.Specialized.OrderedDictionary ...
0
votes
1answer
69 views
Having trouble with Python OrderedDict()!
I am having some trouble using the collections.OrderedDict() module/function. I am using Python 2.7 on Raspbian, the Debian distro for Raspberry Pi. I am trying to print two dictionaries in order for ...
0
votes
2answers
92 views
Does Python-Requests support OrderedDicts, or is something else going wrong here?
I'm trying to POST a request to an Amazon S3 endpoint using Python's Requests library. The request is of the multipart/form-data variety, because it includes the POSTing of an actual file.
One ...
0
votes
1answer
62 views
How to make ordered dictionary from list of lists?
The problem is:
Having a list of names, and a list of lists, how to create a list, in which each item is an ordered dictionary with names as keys, and items from list of lists as values? It might be ...
0
votes
2answers
48 views
Erlang: orddict:size() function for record?
I have the code below with this error:
10> clients_size:init().
{state,[]}
11> clients_size:size().
** exception error: bad argument
in function length/1
called as length(2)
...
1
vote
2answers
84 views
How to test order-conscious hashes for equality in Ruby (≥ 1.9.2)?
Ruby 1.9.2 introduced order into hashes. How can I test two hashes for equality, not only at the key-value level, but also by order?
Neither of the following work.
h1 = {"a"=>1, "b"=>2, ...
1
vote
0answers
7 views
uniques ID ordered by event time
I need to insert a lot of events into DB in ordered way by event time (each event has a time in millisec) to prevent sorting when retrieving data.
Events comes in unordered order. i mean event with ...
2
votes
5answers
77 views
iterate over function arguments and retain sort order in python
I need to call a Stored Procedure in python.
The wrapper function accepts n number of parameters.
Based on the parameter list, I need to quote or unquote the arguments. I also need to send a null ...
0
votes
1answer
75 views
trying to build up an OrderedDict object in Python to eventually convert into JSON via simplejson
The inputs are going to be something like:
List1 - a python list of any size of conditions to be ANDed
List2 - a python list of any size of conditions to be ORed
Eventually, I want to produce JSON ...
0
votes
2answers
103 views
Python ordered garbage collectible dictionary?
I want my Python program to be deterministic, so I have been using OrderedDicts extensively throughout the code. Unfortunately, while debugging memory leaks today, I discovered that OrderedDicts have ...
2
votes
3answers
181 views
How to get the “next” item in an OrderedDict?
I'm using an OrderedDict to random access a list, but now want the next item in the list from the one that I have:
foo = OrderedDict([('apple', 4), ('banana', 3), ('orange', 2), ('pear', 1)])
apple = ...
3
votes
1answer
158 views
change key in OrderedDict without loosing order
Starting with
OrderedDict([('a', 1), ('c', 3), ('b', 2)])
is it possible to end up with
OrderedDict([('a', 1), ('__C__', 3), ('b', 2)])
making sure that the '__C__' item is before 'b' and after ...
1
vote
2answers
337 views
How to subclass an OrderedDict?
Subclassing a Python dict works as expected:
>>> class DictSub(dict):
... def __init__(self):
... self[1] = 10
...
>>> DictSub()
{1: 10}
However, doing the ...
0
votes
0answers
53 views
Ordered maps in Thrift
How do I create ordered map in Thrift.
Thrift supports only Map currently. Is there any way to add ordered map in thrift file ?
There is one email thread @ http://goo.gl/g9Cr7 talking about how it's ...
1
vote
2answers
292 views
string to OrderedDict conversion in python
i have created a python Ordered Dictionary by importing collections and stored it in a file named 'filename.txt'. the file content looks like
OrderedDict([(7, 0), (6, 1), (5, 2), (4, 3)])
i need to ...
0
votes
1answer
325 views
Python ordinary dictionary to ordered dictionary conversion
I have python ordinary dictionary. in this, insertion order is not preserved. I need to keep elements in insertion order. I know that OrderedDict can do this job. but, my problem is i need to get ...
3
votes
1answer
852 views
Accessing Items In a ordereddict
Lets say I have the code:
import collections
d = collections.OrderedDict()
d['foo'] = 'python'
d['bar'] = 'spam'
Is there a way I can access the items in a numbered manner, like:
d(0) #foo's ...
3
votes
3answers
1k views
Last element in OrderedDict
I have od of type OrderedDict. I want to access its most recently added (key, value) pair. od.popitem(last = True) would do it, but would also remove the pair from od which I don't want.
What's a ...
1
vote
2answers
825 views
SortedDict in Django
I have a dictionary with a list of times I want to display in a template:
from django.utils.datastructures import SortedDict
time_filter = SortedDict({
0 : "Eternity",
15 : "15 Minutes",
...
7
votes
3answers
163 views
How do I create a bounded memoization decorator in Python?
Obviously, a quick search yields a million implementations and flavors of the memoization decorator in Python. However, I am interested in a flavor that I haven't been able to find. I would like to ...
5
votes
5answers
236 views
finding n largest differences between two lists
I have two lists old and new, with the same number of elements.
I'm trying to write an efficient function that takes n as a parameter, compares the elements of two lists at the same locations (by ...
0
votes
2answers
193 views
Order of values when extracting Python dict to list
I am trying to get all values (except corresponding to a particular key) from a list of dicts by doing this:
fv = [[v for (k,v) in d.iteritems() if k is not 'xKey'] for d in someDict]
where ...
1
vote
4answers
1k 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
...
6
votes
3answers
648 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
3answers
996 views
Is there any alternative of Dictionary in .NET?
I have a requirement of using a dictionary in the project but as we know that they are only accessible using the keys and not using the indexes, and I want to access the items in dictionary using ...
1
vote
1answer
306 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:
...
33
votes
3answers
4k 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 ...
4
votes
2answers
2k 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", ...
1
vote
3answers
585 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 ...
1
vote
2answers
734 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
1answer
415 views
How can I make a deep-copy of a read only OrderedDictionary with keys and values being strings that is no longer read only?
The orderedDictionary instantiation is this:
IOrderedDictionary orderedDictionary= gridview.DataKeys[index].Values;
orderedDictionary is read only.
How can I make a deep copy of orderedDictionary ...
0
votes
3answers
692 views
The OrderedDictionary is read only and cannot be modified
Q:
When i try the following code :
((IOrderedDictionary)Session["keys"])[2] = objToUpdate.Note_title;
((IOrderedDictionary)Session["keys"])[3] = objToUpdate.Iscourse;
It throws an exception:
...
2
votes
1answer
19k views
Using a list as a datasource for datagridview
I've extracted the setting names and their respective values out of a configuration file into an ordered dictionary. The dictionary contains keys and values which are of the ICollection class. I want ...
3
votes
1answer
547 views
Using linq on OrderedDictionary to obtain max with GridView
I have a custom GridView control (inherits system.web.ui.webcontrols.gridview) and I would like to control the value of a TextBox based on values recently inserted by the user (inserted values are not ...
0
votes
2answers
333 views
Saving/Loading OrderedDictionary to Session
I am trying to save the OrderedDictionary into the session and reload it.
basically, it is a "Last Played" game list.
for some reason, the dictionary is allays NEW .... anyone can pinpoint the ...
12
votes
6answers
4k 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 ...
6
votes
1answer
1k views
Why no generic implementation of OrderedDictionary? [duplicate]
Why is there no generic implementation of OrderedDictionary?
Prior to posting this message, i did see:
http://stackoverflow.com/questions/2629027/no-generic-implementation-of-ordereddictionary
But ...
3
votes
1answer
988 views
C# Ordered dictionary index
I am considering of using the OrderedDictionary. As a key I want to use a long value (id) and the value will be a custom object.
I use the OrderedDictionary because I want to get an object by it's Id ...
37
votes
9answers
8k views
No generic implementation of OrderedDictionary?
I'm using .NET 3.5. I think I know the answer to this, but am looking for confirmation so should be a quick one!
There doesn't appear to be a generic implementation of OrderedDictionary (which is in ...
5
votes
1answer
6k views
how to get key from OrderedDictionary in C# by index?
How to get the key and value of item from OrderedDictionary by index?
4
votes
3answers
3k 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 ...
7
votes
2answers
3k 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__ = ...
6
votes
7answers
1k views
What is the best data structure in .NET for look-up by string key or numeric index?
I'm looking for the most ideal data structure (for performance and ease of use) from which values can be retrieved by string key or index. Dictionary doesn't work because you can't really retrieve by ...
