Refactor code structure for improved readability and maintainability

This commit is contained in:
2025-05-20 18:26:25 +08:00
parent 56e46f0e0c
commit 3fe2c85f6b
15 changed files with 1285 additions and 1243 deletions
+10 -8
View File
@@ -6,24 +6,25 @@ import concurrent.futures
import threading
# Set the file paths for your Google Drive
dataset_path = './dataset.json'
images_path = './images'
dataset_path = "./dataset.json"
images_path = "./images"
download = 1 # Set to 0 if images are already downloaded
# Load dataset json file
with open(dataset_path, 'r') as fp:
with open(dataset_path, "r") as fp:
data = json.load(fp)
# Initialize a counter and a lock for thread-safe counting
downloaded_count = 0
count_lock = threading.Lock()
# Function to download an image
def download_image(k):
global downloaded_count
imageURL = data[k]['imageURL']
imageURL = data[k]["imageURL"]
ext = os.path.splitext(imageURL)[1]
outputFile = os.path.join(images_path, f'{k}{ext}')
outputFile = os.path.join(images_path, f"{k}{ext}")
# Only download the image if it doesn't exist
if not os.path.exists(outputFile):
@@ -33,9 +34,10 @@ def download_image(k):
with count_lock:
downloaded_count += 1
if downloaded_count % 100 == 0:
print(f'{downloaded_count} images downloaded.')
print(f"{downloaded_count} images downloaded.")
except urllib.error.URLError as e:
print(f'Error downloading {outputFile}: {e}')
print(f"Error downloading {outputFile}: {e}")
# Download images using multiple threads
if download == 1:
@@ -45,5 +47,5 @@ if download == 1:
# Create a thread pool and download the images in parallel
# Increase max_workers to potentially speed up downloads for many small files.
# The optimal number may vary based on your network and the server's capacity.
with concurrent.futures.ThreadPoolExecutor(max_workers=50) as executor:
with concurrent.futures.ThreadPoolExecutor(max_workers=400) as executor:
executor.map(download_image, data.keys())