Skip to content

Instantly share code, notes, and snippets.

@7h3rAm
7h3rAm / secs_to_human
Last active May 10, 2017 15:14
Seconds to human readable text. Inspired from https://gist.github.com/erickpatrick/3039081
#!/usr/bin/env python
def sec_to_human(secs):
units = dict({
7*24*3600: "week",
24*3600: "day",
3600: "hour",
60: "minute",
1: "second"
})