Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python: strftime, gmtime not respecting timezone

Tags:

import time
print time.strftime("%a, %d %b %Y %I:%M %p %Z", time.gmtime())

I live in California. For some reason, this code is reporting the time in GMT, instead of respecting the system time zone. I know that strftime knows I'm in pacific, because it still prints 'PST' at the end, but it's still 8 hours ahead. Is anyone else noticing this? Anyone know what's either wrong with my system or my code?

EDIT: running date at the command line gives me the correct date. Additionally, I've run this on two different computers (mac and linux) and they both report 8 hours ahead. Are you expected to correct for timezone before using strftime?

like image 654
Shaun Budhram Avatar asked Jan 24 '11 23:01

Shaun Budhram


1 Answers

time.gmtime() returns the time in UTC. What you need is time.localtime(), which is timezone-aware. This behaviour is well-documented in the time module documentation.

EDIT:

To convert any time.time() style timestamp to a struct_time, you can supply an argument to time.localtime():

>>> print time.strftime("%a, %d %b %Y %I:%M:%S %p %Z", time.localtime(10.5))
Thu, 01 Jan 1970 02:00:10 AM EET
like image 185
thkala Avatar answered Oct 14 '22 07:10

thkala