> 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