vote up 1 vote down star

How do you convert a python time.struct_time object into a datetime.datetime object? I have a library that provides the first one and a second library that wants the second one...

flag

Thanks to both of you! – static_rtti Nov 9 at 8:29

2 Answers

vote up 2 vote down check

Use time.mktime() to convert the time tuple (in localtime) into seconds since the Epoch, then use datetime.fromtimestamp() to get the datetime object.

from time import mktime
from datetime import datetime

dt = datetime.fromtimestamp(mktime(struct))
link|flag
+1, I like this more than my solution :) – Nadia Alramli Nov 8 at 21:02
@Nadia - thanks :) – Rod Hyde Nov 9 at 21:51
vote up 5 vote down

Like this:

>>> structTime = time.localtime()
>>> datetime.datetime(*structTime[:6])
datetime.datetime(2009, 11, 8, 20, 32, 35)
link|flag
Don't forget to #import time, datetime – jhwist Nov 8 at 21:00
1  
@jhwist - some things people can be trusted to figure it out on their own :) – orip Nov 8 at 21:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.