Skip to content

Instantly share code, notes, and snippets.

@borgstrom
Created May 9, 2018 04:00
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save borgstrom/936ca741e885a1438c374824efb038b3 to your computer and use it in GitHub Desktop.
Save borgstrom/936ca741e885a1438c374824efb038b3 to your computer and use it in GitHub Desktop.
Python: Convert seconds (duration) to human readable string
TIME_DURATION_UNITS = (
('week', 60*60*24*7),
('day', 60*60*24),
('hour', 60*60),
('min', 60),
('sec', 1)
)
def human_time_duration(seconds):
if seconds == 0:
return 'inf'
parts = []
for unit, div in TIME_DURATION_UNITS:
amount, seconds = divmod(int(seconds), div)
if amount > 0:
parts.append('{} {}{}'.format(amount, unit, "" if amount == 1 else "s"))
return ', '.join(parts)
@matabares
Copy link

Thank you!

@jeffwright13
Copy link

Good stuff, thanks

@hkbharath
Copy link

Thank you for this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment