Skip to content

Instantly share code, notes, and snippets.

@reedobrien
Created April 25, 2017 01:00
Show Gist options
  • Save reedobrien/fe46458e087af3f655ad0027bc036ecc to your computer and use it in GitHub Desktop.
Save reedobrien/fe46458e087af3f655ad0027bc036ecc to your computer and use it in GitHub Desktop.
import requests
import hashlib
r = requests.get(url, stream=True)
sig = hashlib.sha256()
for line in r.iter_lines():
sig.update(line)
print(sig.hexdigest())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment