Skip to content

Instantly share code, notes, and snippets.

@TeddyDD
Created April 12, 2014 23:15
Show Gist options
  • Save TeddyDD/10561543 to your computer and use it in GitHub Desktop.
Save TeddyDD/10561543 to your computer and use it in GitHub Desktop.
def sha1OfFile(filepath):
import hashlib
with open(filepath, 'rb') as f:
return hashlib.sha1(f.read()).hexdigest()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment