From 037229265f02da51a1d49d62d8e8b211325e9385 Mon Sep 17 00:00:00 2001 From: Steven Crawford Date: Thu, 12 Dec 2024 13:32:08 -0600 Subject: [PATCH] added attribution to code sample --- split_zip_into_smaller_chunks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/split_zip_into_smaller_chunks.py b/split_zip_into_smaller_chunks.py index 6e2bae6..b740363 100755 --- a/split_zip_into_smaller_chunks.py +++ b/split_zip_into_smaller_chunks.py @@ -5,6 +5,7 @@ from io import BytesIO def printProgressBar(iteration, total, prefix = '', suffix = '', decimals = 1, length = 100, fill = '█', printEnd = "\r"): """ + As found in Stack Overflow answer: https://stackoverflow.com/a/34325723 Call in a loop to create terminal progress bar @params: iteration - Required : current iteration (Int)