-
Notifications
You must be signed in to change notification settings - Fork 0
/
progress.py
38 lines (34 loc) · 1.42 KB
/
progress.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import time
# Print iterations progress
def do_progress (iteration, total, prefix = 'Progress:', suffix = 'Complete', decimals = 1, length = 100, fill = '█', printEnd = "\r"):
"""
Call in a loop to create terminal progress bar
@params:
iteration - Required : current iteration (Int)
total - Required : total iterations (Int)
prefix - Optional : prefix string (Str)
suffix - Optional : suffix string (Str)
decimals - Optional : positive number of decimals in percent complete (Int)
length - Optional : character length of bar (Int)
fill - Optional : bar fill character (Str)
printEnd - Optional : end character (e.g. "\r", "\r\n") (Str)
"""
percent = ("{0:." + str(decimals) + "f}").format(100 * (iteration / float(total)))
filledLength = int(length * iteration // total)
bar = fill * filledLength + '-' * (length - filledLength)
print(f'\r{prefix} |{bar}| {percent}% {suffix}', end = printEnd)
# Print New Line on Complete
if iteration == total:
print()
# A List of Items
# items = list(range(0, 100))
# l = len(items)
# # Initial call to print 0% progress
# do_progress(0, l, length = 50)
# for i, item in enumerate(items):
# # Do stuff...
# time.sleep(0.01)
# # Update Progress Bar
# do_progress(i + 1, l, length = 50)
# if(i==50):
# input("\n what is I?")