mirror of
https://github.com/getsolus/packages.git
synced 2025-04-25 20:30:37 +03:00
76 lines
1.9 KiB
Python
76 lines
1.9 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
# yauto.py
|
|
#
|
|
# Copyright 2013 Ikey Doherty <ikey@solusos.com>
|
|
# Copyright 2015 Ikey Doherty <iikey@solus-project.com>
|
|
# Copyright 2024 Solus Developers <releng@getsol.us>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
import hashlib
|
|
import urllib
|
|
import urllib.request
|
|
|
|
|
|
def download_file(url):
|
|
file_name = url.split("/")[-1]
|
|
output = file_name
|
|
r = urllib.request.Request(url)
|
|
r.add_header("User-Agent", "yauto/0.0")
|
|
u = urllib.request.urlopen(r)
|
|
f = open(output, "wb")
|
|
|
|
try:
|
|
file_size = int(u.headers["Content-Length"])
|
|
except Exception:
|
|
file_size = 0
|
|
|
|
file_size_dl = 0
|
|
block_sz = 8192
|
|
while True:
|
|
buffer = u.read(block_sz)
|
|
if not buffer:
|
|
break
|
|
|
|
file_size_dl += len(buffer)
|
|
f.write(buffer)
|
|
if file_size > 0:
|
|
status = r" [%3.2f%%] %s/%s %s" % (
|
|
file_size_dl * 100.0 / file_size,
|
|
sizeof_fmt(file_size_dl),
|
|
sizeof_fmt(file_size),
|
|
file_name,
|
|
)
|
|
else:
|
|
status = r" %s/unknown_size %s" % (sizeof_fmt(file_size_dl), file_name)
|
|
status = status + chr(8) * (len(status) + 1)
|
|
print(status, end=" ")
|
|
|
|
print("\n")
|
|
f.close()
|
|
|
|
|
|
def sizeof_fmt(num):
|
|
for x in ["bytes", "KB", "MB", "GB"]:
|
|
if num < 1024.0:
|
|
return "%3.1f%s" % (num, x)
|
|
num /= 1024.0
|
|
return "%3.1f%s" % (num, "TB")
|
|
|
|
|
|
def get_sha256sum(filename):
|
|
sh = hashlib.sha256()
|
|
with open(filename, "rb") as f:
|
|
sh.update(f.read())
|
|
return sh.hexdigest()
|
|
|
|
|
|
def get_sha1sum(filename):
|
|
sh = hashlib.sha1()
|
|
with open(filename, "rb") as f:
|
|
sh.update(f.read())
|
|
return sh.hexdigest()
|