I'm retrieving results (stored in files in pickle format) and storing them locally. I wanted to retrieve them only if they changed (basically, re-implementing sync_from_cloud).
I used get_md5() and then I calculated the md5 from my local file using;
hashlib.md5 (open (file, 'r').read()).hexdigest()
but it appears the md5 I calculate locally never matches the md5 I get from get_md5().
Any ideas?