Skip to content

Instantly share code, notes, and snippets.

@edendekker
edendekker / secs_to_human
Last active September 5, 2019 23:06 — forked from 7h3rAm/secs_to_human
Seconds to human readable text.
#!/usr/bin/env python
def sec_to_human(secs):
secs = end_time - start_time
units = dict({
7*24*3600: "week",
24*3600: "day",
3600: "hour",
60: "minute",
1: "second"