What I want to achieve is easy:
time.time() is not quite readable. How to get the following:
e.g.
time.time() //say, it's May 15 2013 13:15:46
How to get the following given time.time() above:
May 15 2013 12:15:46
May 15 2013 14:15:46
May 15 2013 13:14:46
May 15 2013 13:16:46
I am looking for something like:
def back_an_hr(current_time):
.....
def back_a_min(current_time):
.....
back_an_hr(time.time()) # this brings time.time() back an hr
back_a_min(time.time()) # this brings time.time() back a min