I have two lists of dictionaries
list1 = [ {..}, {..}, ..]
list2 = [ {..}, {..}, ..]
I want to remove the dictionaries in list1 which are in list2. I had a similar problem where I had a list of lists instead of a dictionary and it is solved here
http://stackoverflow.com/questions/1723494/python-function-slowing-down-for-no-apparent-reason
If I use the same code which is,
def removeDups(list1, list2):
list2_set = set([tuple(x) for x in list2])
diff = [x for x in list1 if tuple(x) not in list2_set]
return diff
I do not get correct results since dictionaries like
{key1:'a', key2:'b'} and
{key2:'b', key1:'a'}
which are the same are actually considered as different. How can I change the code or what can I do to remove dictionaries from list1 that appear in list2?