-
Notifications
You must be signed in to change notification settings - Fork 188
/
progress_bar.py
77 lines (65 loc) · 1.97 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import sys
import time
TOTAL_BAR_LENGTH = 80
LAST_T = time.time()
BEGIN_T = LAST_T
def progress_bar(current, total, msg=None):
global LAST_T, BEGIN_T
if current == 0:
BEGIN_T = time.time() # Reset for new bar.
current_len = int(TOTAL_BAR_LENGTH * (current + 1) / total)
rest_len = int(TOTAL_BAR_LENGTH - current_len) - 1
sys.stdout.write(' %d/%d' % (current + 1, total))
sys.stdout.write(' [')
for i in range(current_len):
sys.stdout.write('=')
sys.stdout.write('>')
for i in range(rest_len):
sys.stdout.write('.')
sys.stdout.write(']')
current_time = time.time()
step_time = current_time - LAST_T
LAST_T = current_time
total_time = current_time - BEGIN_T
time_used = ' Step: %s' % format_time(step_time)
time_used += ' | Tot: %s' % format_time(total_time)
if msg:
time_used += ' | ' + msg
msg = time_used
sys.stdout.write(msg)
if current < total - 1:
sys.stdout.write('\r')
else:
sys.stdout.write('\n')
sys.stdout.flush()
# return the formatted time
def format_time(seconds):
days = int(seconds / 3600/24)
seconds = seconds - days*3600*24
hours = int(seconds / 3600)
seconds = seconds - hours*3600
minutes = int(seconds / 60)
seconds = seconds - minutes*60
seconds_final = int(seconds)
seconds = seconds - seconds_final
millis = int(seconds*1000)
output = ''
time_index = 1
if days > 0:
output += str(days) + 'D'
time_index += 1
if hours > 0 and time_index <= 2:
output += str(hours) + 'h'
time_index += 1
if minutes > 0 and time_index <= 2:
output += str(minutes) + 'm'
time_index += 1
if seconds_final > 0 and time_index <= 2:
output += str(seconds_final) + 's'
time_index += 1
if millis > 0 and time_index <= 2:
output += str(millis) + 'ms'
time_index += 1
if output == '':
output = '0ms'
return output