If you're only concerned about finding the max value, and not the key relating to it, then you just access the values of the dict (although the linked post Getting key with maximum value in dictionary? is definitely worth a read)
On Python 2.x:
max(foo.itervalues())
On Python 3.x:
max(foo.values())