From 6500764baa0f57c55041e7c50c0917c2d5de62ec Mon Sep 17 00:00:00 2001 From: datechnoman Date: Mon, 4 Dec 2023 10:53:05 +0000 Subject: [PATCH] Update multithread_script_5.0.py --- multithread_script_5.0.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multithread_script_5.0.py b/multithread_script_5.0.py index 2157ea1..8a2b55d 100644 --- a/multithread_script_5.0.py +++ b/multithread_script_5.0.py @@ -63,7 +63,7 @@ urls = [url.strip() for url in urls] batch_size = 100 # Define the concurrency level (number of download processes running concurrently) -concurrency_level = 3 +concurrency_level = 10 # Split the URLs into batches batches = [urls[i:i+batch_size] for i in range(0, len(urls), batch_size)]