mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 09:44:50 +00:00
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
import os
|
|
import random
|
|
import string
|
|
import time
|
|
|
|
import requests
|
|
|
|
from misskaty.helper.human_read import get_readable_file_size
|
|
|
|
|
|
def random_char(y):
|
|
return "".join(random.choice(string.ascii_letters) for _ in range(y))
|
|
|
|
|
|
def DetectFileSize(url):
|
|
r = requests.get(url, allow_redirects=True, stream=True)
|
|
return int(r.headers.get("content-length", 0))
|
|
|
|
|
|
def DownLoadFile(url, file_name, chunk_size, client, ud_type, message_id, chat_id):
|
|
if os.path.exists(file_name):
|
|
os.remove(file_name)
|
|
if not url:
|
|
return file_name
|
|
r = requests.get(url, allow_redirects=True, stream=True)
|
|
# https://stackoverflow.com/a/47342052/4723940
|
|
total_size = int(r.headers.get("content-length", 0))
|
|
downloaded_size = 0
|
|
with open(file_name, "wb") as fd:
|
|
for chunk in r.iter_content(chunk_size=chunk_size):
|
|
if chunk:
|
|
fd.write(chunk)
|
|
downloaded_size += chunk_size
|
|
if client is not None and ((total_size // downloaded_size) % 5) == 0:
|
|
time.sleep(0.3)
|
|
try:
|
|
client.edit_message_text(
|
|
chat_id,
|
|
message_id,
|
|
text=f"{ud_type}: {get_readable_file_size(downloaded_size)} of {get_readable_file_size(total_size)}",
|
|
)
|
|
except:
|
|
pass
|
|
return file_name
|