35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
def seconds_to_string(seconds: int, short=False, truncate=False):
|
|
seconds = int(seconds)
|
|
increments = [('year', 'yr', 31557600),
|
|
('week', 'wk', 604800),
|
|
('day', 'day', 86400),
|
|
('hour', 'hr', 3600),
|
|
('minute', 'min', 60),
|
|
('second', 'sec', 1)]
|
|
|
|
if seconds == 0:
|
|
if short:
|
|
return f"0 {increments[-1][1]}s"
|
|
else:
|
|
return f"0 {increments[-1][0]}s"
|
|
|
|
time_string = ""
|
|
|
|
remainder = seconds
|
|
for st, sst, s in increments:
|
|
if remainder == 0:
|
|
break
|
|
if short:
|
|
st = sst
|
|
if remainder < s or remainder == 0:
|
|
continue
|
|
else:
|
|
exact, remainder = divmod(remainder, s)
|
|
if exact > 1:
|
|
time_string += f"{exact} {st}s, "
|
|
else:
|
|
time_string += f"{exact} {st}, "
|
|
if truncate:
|
|
break
|
|
return time_string.strip().strip(',')[::-1].replace(' ,', ' dna ', 1)[::-1]
|