timeTime() function question
Can anyone explain the math behind the Python / Zope UTC timeTime() function? I need to add two weeks to a timeTime generated date, for post processing. For example; with the timeTime() generated number: 1014071233.22 What would two weeks from this number be, in timeTime format? Harlow Pinson Indepth Learning Email: hpinson@indepthl.com Web: http://www.indepthl.com Voice: 505-994-2135 FAX: 208-475-7678
Why do you want to use the timeTime() representation ? Just add 14 (2*7 days) to the instance of the corresponding DateTime object. newDate = DateTime("2002/02/05") + 14 - aj ----- Original Message ----- From: <hpinson@indepthl.com> To: <zope@zope.org> Sent: Tuesday, February 19, 2002 20:12 Subject: [Zope] timeTime() function question
Can anyone explain the math behind the Python / Zope UTC timeTime() function? I need to add two weeks to a timeTime generated date, for post processing.
For example; with the timeTime() generated number:
1014071233.22
What would two weeks from this number be, in timeTime format?
Harlow Pinson Indepth Learning Email: hpinson@indepthl.com Web: http://www.indepthl.com Voice: 505-994-2135 FAX: 208-475-7678
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
On 19 Feb 2002 at 20:18, Andreas Jung wrote:
Why do you want to use the timeTime() representation ? Just add 14 (2*7 days) to the instance of the corresponding DateTime object.
newDate = DateTime("2002/02/05") + 14
Hi Andrew. That should solve the problem. I'm using timeTime as a unique table identifier, which it seems pretty well suited for. I can definitly use both. Thanks! Harlow Pinson Indepth Learning Email: hpinson@indepthl.com Web: http://www.indepthl.com Voice: 505-994-2135 FAX: 208-475-7678
participants (2)
-
Andreas Jung -
hpinson@indepthl.com