vote up 2 vote down star

How do I convert a datetime or date object into a POSIX timestamp in python? There are methods to create a datetime object out of a timestamp, but I don't seem to find any obvious ways to do the operation the opposite way.

flag

2 Answers

vote up 6 vote down check
import time, datetime

d = datetime.datetime.now()
print time.mktime(d.timetuple())
link|flag
Thank you. I knew it had to be something stupidly simple, but I couldn't figure it out. – Jason Baker Oct 31 '08 at 21:53
It seems that depending on the platform, time doesn't have a mktime method – Tirno Mar 19 at 22:05
vote up 1 vote down

A Maybe?

Code I found via Google

link|flag
If I was working boost that might be helpful. :-) – Jason Baker Oct 31 '08 at 21:53
No problem mate...I was just trying to be helpful – websch01ar Oct 31 '08 at 21:58

Your Answer

Get an OpenID
or

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