Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a massive python dictionary with over 90,000 entries. For reasons I won't get into, I need to store this dictionary in my database and then at a later point recompile dictionary from the database entries.

I am trying to set up a procedure to verify that my storage and recompilation was faithful and that my new dictionary is equivalent to the old one. What is the best methodology for testing this.

There are minor differences and I want to figure out what they are.

share|improve this question
1  
If your values all have equivalence defined, just dict1 == dict2 should work – Thomas Sep 30 '11 at 14:33
new == old ... – Jochen Ritzel Sep 30 '11 at 14:34
I am assuming that there could be some minor problems, and if there are minor problems, I want to know what they are i.e. what the differences are. – Peter Sep 30 '11 at 14:34
Do you need to do a straight-up == check, or would you be interested in knowing which elements are different (e.g., for debugging)? – todofixthis Sep 30 '11 at 14:38
3  
Here's a very nice class that does exactly what you want - stackoverflow.com/questions/1165352/… – RonakG Sep 30 '11 at 14:46
show 2 more comments

3 Answers

up vote 3 down vote accepted

The most obvious approach is of course:

if oldDict != newDict
  print "**Failure to rebuild, new dictionary is different from the old"

That ought to be the fastest possible, since it relies on Python's internals to do the comparison.

UPDATE: It seems you're not after "equal", but something weaker. I think you need to edit your question to make it clear what you consider "equivalent" to mean.

share|improve this answer
I have tried this and there are differences. I want to set-up a procedure that lets me know what those differences are. – Peter Sep 30 '11 at 14:37
2  
@Peter if you want to "set-up a procedure that lets me know what those differences are" which I think was clear in your question, why would you mark this answer as accepted? – agf Oct 3 '11 at 22:19
>>> d1 = {'a':1,'b':2,'c':3}
>>> d2 = {'b':2,'x':2,'a':5}
>>> set(d1.iteritems()) - set(d2.iteritems()) # items in d1 not in d2
set([('a', 1), ('c', 3)])
>>> set(d2.iteritems()) - set(d1.iteritems()) # items in d2 not in d1
set([('x', 2), ('a', 5)])

Edit Don't vote for this answer. Go to Fast comparison between two Python dictionary and add an upvote. It is a very complete solution.

share|improve this answer
Other post doesn't use iteritems. I like this approach better. – sholsapp Mar 9 '12 at 18:23

You could start with something like this and tweak it to suit your needs

>>> bigd = dict([(x, random.randint(0, 1024)) for x in xrange(90000)])
>>> bigd2 = dict([(x, random.randint(0, 1024)) for x in xrange(90000)])
>>> dif = set(bigd.items()) - set(bigd2.items())
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.