I have a string in the form '20111014T090000' with associated timezone ID (TZID=America/Los_Angeles) and I want to convert this to UTC time in seconds with the appropriate offset.

The problem seems to that my output time is off by 1 hour (it's in PST when it should be PDT) and I'm using the pytz to help with timezo

import pytz

def convert_to_utc(date_time)
    # date_time set to '2011-10-14 09:00:00' and is initially unaware of timezone information

    timezone_id = 'America/Los_Angeles'
    tz = pytz.timezone(timezone_id);

    # attach the timezone
    date_time = date_time.replace(tzinfo=tz);

    print("replaced: %s" % date_time);                                                                          
    # this makes date_time to be: 2011-10-14 09:00:00-08:00
    # even though the offset should be -7 at the present time

    print("tzname: %s" % date_time.tzname());
    # tzname reports PST when it should be PDT

    print("timetz: %s" % date_time.timetz());
    # timetz: 09:00:00-08:00 - expecting offset -7

    date_time_ms = int(time.mktime(date_time.utctimetuple())); 
    # returns '1318611600' which is 
    # GMT: Fri, 14 Oct 2011 17:00:00 GMT
    # Local: Fri Oct 14 2011 10:00:00 GMT-7

    # when expecting: '1318608000' seconds, which is
    # GMT: Fri, 14 Oct 2011 16:00:00 GMT
    # Local: Fri Oct 14 2011 9:00:00 GMT-7 -- expected value

How do I get the correct offset based on the timezone Id?

link|improve this question

1  
It helps to post code that works. Your code is missing a colon, missing a bracket, has bad indentation and is sprinkled with the use of redundant semicolons. – Donkopotamus Sep 27 '11 at 4:41
You need a call to date_time.localize. That's the only essential ingredient that is completely missing here. – wberry Sep 28 '11 at 15:54
feedback

1 Answer

The following snippet will do what you wish

def convert(dte, fromZone, toZone):
    fromZone, toZone = pytz.timezone(fromZone), pytz.timezone(toZone)
    return fromZone.localize(dte, is_dst=True).astimezone(toZone)

The crucial part here is to pass is_dst to the localize method.

link|improve this answer
Based on the docs, it seemed that the is_dst flag may not interpret and provide the expected value: >>> dt = datetime(2002, 10, 27, 1, 30, 0) >>> dt1 = eastern.localize(dt, is_dst=True) >>> dt1.strftime(fmt) '2002-10-27 01:30:00 EDT-0400' >>> dt2 = eastern.localize(dt, is_dst=False) >>> dt2.strftime(fmt) '2002-10-27 01:30:00 EST-0500' – Dan Holman Sep 27 '11 at 15:41
The is_dst argument is optional except in the case of an ambiguous time (i.e. during a "fall back" where the same hour of the day occurs twice in the local time zone). The rest of the time the conversion will work without it. The argument tells pytz whether daylight savings is in effect or not for the datetime object you supply. – wberry Sep 28 '11 at 15:50
feedback

Your Answer

 
or
required, but never shown

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