Browse Source

better hr_time

devel
Stefan Holst 4 years ago
parent
commit
c12a30328c
  1. 11
      src/kyupy/__init__.py

11
src/kyupy/__init__.py

@ -31,15 +31,22 @@ def hr_bytes(nbytes):
def hr_time(seconds): def hr_time(seconds):
s = '' s = ''
if seconds >= 86400:
d = seconds // 86400
seconds -= d * 86400
s += f'{int(d)}d'
if seconds >= 3600: if seconds >= 3600:
h = seconds // 3600 h = seconds // 3600
seconds -= h * 3600 seconds -= h * 3600
s += f'{int(h)}h' s += f'{int(h)}h'
if seconds >= 60 or len(s) > 0: if seconds >= 60:
m = seconds // 60 m = seconds // 60
seconds -= m * 60 seconds -= m * 60
if 'd' not in s:
s += f'{int(m)}m' s += f'{int(m)}m'
return f'{s}{int(seconds)}s' if 'h' not in s and 'd' not in s:
s += f'{int(seconds)}s'
return s
class Log: class Log:

Loading…
Cancel
Save