Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python pytz: convert local time to utc. Localize doesn't seem to convert

I have a database that stores datetime as UTC. I need to look up info from a particular time, but the date and time are given in a local time, let's say 'Europe/Copenhagen'. I'm given these as:

year = 2012; month = 12; day = 2; hour = 13; min = 1;

So, I need to convert these to UTC so I can look them up in the database. I want to do this using pytz. I am looking at localize:

 local_tz = timezone('Europe/Copenhagen')
 t = local_tz.localize(datetime.datetime(year, month, day, hour, min))

But I'm confused about localize(). Is this assuming that year, etc, are given to me in local time? Or, is it assuming that they they are given in UTC and now it has converted them to local time?

print t gives me:

2012-12-02 13:01:00+01:00

So it seems that it assumed that the original year, etc was in utc; hours is now 13+1 instead of 13. So what should I do instead? I have read the pytz documentation and this does not make it clearer to me. It mentions a lot that things are tricky so I'm not sure whether pytz is actually solving these issues. And, I don't always know if the examples are showing me things that work or things that won't work.

I tried normalize:

print local_tz.normalize(t)

That gives me the same result as print t.

EDIT: With the numbers given above for year etc. it should match up with information in the database for 2012-12-2 12:01. (since Copenhagen is utc+1 on that date)

like image 770
user984003 Avatar asked Nov 12 '12 14:11

user984003


1 Answers

localize() attaches the timezone to a naive datetime.datetime instance in the local timezone.

If you have datetime values in a local timezone, localize to that timezone, then use .astimezone() to cast the value to UTC:

>>> localdt = local_tz.localize(datetime.datetime(year, month, day, hour, min))
>>> localdt.astimezone(pytz.UTC)
datetime.datetime(2012, 12, 2, 12, 1, tzinfo=<UTC>)

Note that you don't need to do this, datetime objects with a timezone can be compared; they'll both be normalized to UTC for the test:

>>> localdt.astimezone(pytz.UTC) == localdt
True
like image 118
Martijn Pieters Avatar answered Sep 29 '22 11:09

Martijn Pieters