
import hashlib
expected = "3a6e3199ac2147b822b50e643e558183"
fname = r"stackless-python-312.zip"
print("expected digest", expected)
received = hashlib.md5(open(fname, "rb").read()).hexdigest()
print(("matched", "NOT MATCHED!!") [received != expected])
input("press enter to continue")
