[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

Re: converting datetime with tzinfo to unix timestamp

Gabriel Genellina

3/16/2010 3:53:00 AM

En Fri, 12 Mar 2010 20:15:55 -0300, Michael Torrie <torriem@gmail.com>
escribió:

> On Python 2.5 here.
>
> I've searched and searched but I can't find any way to convert a
> datetime object that includes a timezone (tzinfo) to a unix timestamp.
> Folks on the net say to simply use the timetuple() method of the object
> and feed that to time.mktime(). But that just doesn't seem to work for
> me. At least if my understanding that the unix timestamp is always UTC.

Try time.mktime(datetimeobject.utctimetuple()) instead.

--
Gabriel Genellina