-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprogress_bar.py
50 lines (43 loc) · 1.65 KB
/
progress_bar.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
39
40
41
42
43
44
45
46
47
48
49
50
# From https://stackoverflow.com/a/34325723
_prev_str_length = None
# Print iterations progress
def print_progress_bar(iteration, total, prefix='', suffix='', decimals=1, length=18, fill='█'):
"""
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)
"""
percent = ("{0:." + str(decimals) + "f}").format(100 * (iteration / float(total)))
filledLength = int(length * iteration // total)
bar = fill * filledLength + '-' * (length - filledLength)
s = '%s |%s| %s%% %s' % (prefix, bar, percent, suffix)
global _prev_str_length
if _prev_str_length:
print(' ' * _prev_str_length, end='\r') #Clear out previous bar to prevent lingering characters if current bar is shorter
print(s, end='\r')
_prev_str_length = len(s)
# Print New Line on Complete
if iteration == total:
_prev_str_length = None
print()
if __name__ == '__main__':
#
# Sample Usage
#
from time import sleep
# A List of Items
items = list(range(0, 57))
l = len(items)
for i in range(l + 1):
# Do stuff...
sleep(0.1)
# Update Progress Bar
print_progress_bar(i, l, prefix='Progress:', suffix='Complete')
# Sample Output
# Progress: |█████████████████████████████████████████████-----| 90.0% Complete