(fname)
| 631 | os.remove(zip_path) |
| 632 | |
| 633 | def calculate_md5(fname): |
| 634 | hash_md5 = hashlib.md5() |
| 635 | with open(fname, "rb") as f: |
| 636 | for chunk in iter(lambda: f.read(4096), b""): |
| 637 | hash_md5.update(chunk) |
| 638 | return hash_md5.hexdigest() |
| 639 | |
| 640 | def diff(input_list): |
| 641 | return max(input_list)-min(input_list) |
no outgoing calls
no test coverage detected
searching dependent graphs…