Update concurrency

This commit is contained in:
datechnoman 2024-01-26 08:01:39 +00:00
parent f76dbb13fd
commit 8244b9241a

View File

@ -78,7 +78,7 @@ def process_file(file_path):
def download_and_process_file(url):
try:
command = f'axel -n 3 {url}'
command = f'axel -n 4 {url}'
result = subprocess.run(command, shell=True, check=True)
if result.returncode == 0:
file_path = os.path.join(os.getcwd(), os.path.basename(url))