mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-22 21:32:31 +00:00
python-3.6.zip added from Github
README.cosmo contains the necessary links.
This commit is contained in:
parent
75fc601ff5
commit
0c4c56ff39
4219 changed files with 1968626 additions and 0 deletions
27
third_party/python/Tools/msi/generate_md5.py
vendored
Normal file
27
third_party/python/Tools/msi/generate_md5.py
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
import hashlib
|
||||
import os
|
||||
import sys
|
||||
|
||||
def main():
|
||||
filenames, hashes, sizes = [], [], []
|
||||
|
||||
for file in sys.argv[1:]:
|
||||
if not os.path.isfile(file):
|
||||
continue
|
||||
|
||||
with open(file, 'rb') as f:
|
||||
data = f.read()
|
||||
md5 = hashlib.md5()
|
||||
md5.update(data)
|
||||
filenames.append(os.path.split(file)[1])
|
||||
hashes.append(md5.hexdigest())
|
||||
sizes.append(str(len(data)))
|
||||
|
||||
print('{:40s} {:<32s} {:<9s}'.format('File', 'MD5', 'Size'))
|
||||
for f, h, s in zip(filenames, hashes, sizes):
|
||||
print('{:40s} {:>32s} {:>9s}'.format(f, h, s))
|
||||
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(int(main() or 0))
|
Loading…
Add table
Add a link
Reference in a new issue