diff --git a/progress_utils.py b/progress_utils.py new file mode 100644 index 0000000..1faa984 --- /dev/null +++ b/progress_utils.py @@ -0,0 +1,6 @@ +from tqdm import tqdm + +def process_items(items): + for item in tqdm(items, desc="Processing items"): + # Simulate processing + pass \ No newline at end of file