pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python 2.3 or higher. It also solves the issue of ambiguous times at the end of daylight savings.

learn more… | top users | synonyms

1
vote
1answer
30 views

Expression of timezone offset - clarification appreciated

Something I'm currently working on requires localised times for users around the world. All datetimes are stored as UTC, so converting them is easy enough and we have a known, safe, point of ...
0
votes
2answers
57 views

Django and Timezones: how to render aware datetime as a naive one in template (with pytz)

I have those models: class TimeZone(models.Model): name = models.CharField(max_length = 40, unique = True, editable = False) def tz(self): return pytz.timezone(str(self.name)) class ...
4
votes
2answers
79 views

How can I convert windows timezones to timezones pytz understands?

In a windows python environment I can get the local timezone like this, but it's not usable with pytz: >>> import win32timezone >>> win32timezone.TimeZoneInfo.local() ...
0
votes
2answers
62 views

Inconsistent Behavior with datetime.astimezone in Python

My use case is simply to store dates in the database as UTC and achieve expected results for the user scheduling in US/Central time when both scheduling and viewing a scheduled time. The inconsistent ...
1
vote
1answer
23 views

Difference between pytz.UTC and pytz.timezone('GMT')

pytz's documentation says: Note that this instance [pytz.timezone('UTC')] is not the same instance (or implementation) as other timezones with the same meaning (GMT, Greenwich, Universal, ...
0
votes
1answer
254 views

python: pytz package installation issue: ImportError: No module named pytz

I installed the pytz package on my windows7 machine via: C:\Users\name\Downloads\pytz>easy_install --upgrade pytz Searching for pytz Reading http://pypi.python.org/simple/pytz/ Reading ...
0
votes
1answer
28 views

Django UnknownTimeZoneError

Recently I was playing around with google app engine and installed the pytz version for GAE (gaepytz-2011h-py2.7 to be more exact). When I'm trying to open my admin for a Django project now I'm ...
0
votes
2answers
26 views

Using pytz to associate zipcode of US with their UTC Offset and related DST offset

Task: Given every zipcode of locations in US, I need to get the exact utf_timeoffset and exact dst(daytime savings offset), but I can ignore zip_code belonging to AP/FPO/DPO. I need take into account ...
1
vote
1answer
74 views

Python pytz: timezone(“xxx”) gives “unpack requires a string argument of length 44”

I am getting an error "struct.error: unpack requires a string argument of length 44" when I try to create some of the timezones using pytz. For others it works fine. The first two work great. The ...
0
votes
1answer
103 views

Django celery beat pytz error on startup

Out of the blue I get the following error when trying to start my dev server with celery and celery beat. One day this thing works next day it doesn't, I haven't changed anything that could explain ...
3
votes
1answer
60 views

pytz timezone tags to adjust date printed in templates

Inside my app I use normal datetime objects. In my template: {% load tz %} {{datetimeobject|timezone:"Europe/Paris"}} {% timezone "Europe/Paris" %} {{datetimeobject}} {% endtimezone %} This ...
0
votes
2answers
136 views

Python/Django: Need a ListBox/Dropdown with pytz common_timezones name each difference for UTC (offsets)

Need a ListBox/Dropdown with pytz common_timezones name each difference for UTC. <select style="cursor:pointer; min-width: 300px;" name="timezone"> {% for tz in timezones %} ...
0
votes
1answer
55 views

python - Give UTC time get Time in Japan using pytz

Here is UTC time: now_utc = datetime.datetime.now(timezone('UTC')) Here is the time zone of Tokyo: tz = Asia/Tokyo So...using pytz how to I get the local time on Japan?
0
votes
0answers
51 views

PYTZ no timezones

I just got pytz loaded. I can import it no problem. but when I call pytz.all_timezones I get [ ]. I have used this package before and it list all the zones. What would be causing this to not list the ...
0
votes
0answers
114 views

Convert string UTC datetime into Local Date Time Using Python and pytz

I have a string in this format and it is in UTC. this_date = '2012-12-26 21' #"%Y-%m-%d %H" My local timezone is e.g. 'Asia/Singapore' Using pytz, how to I convert the string UTC time into the ...
1
vote
1answer
86 views

Comparing times by considering time zones

According to Convert UTC to local time to UTC in Python and Google App Engine, to correctly compare the times of now and a target time (considering different time zones), I have to convert the target ...
0
votes
0answers
101 views

Daylight Savings Time in Django With Time Zone Enabled

So, I have an app that I designed from the beginning to not use UTC, but instead depend on local time. I made this choice because the app would only be used during the day (between the hours of 9am ...
3
votes
1answer
244 views

How to add timezone into a naive datetime instance in python

I've got a datetime which has no timezone information. I'm now getting the timezone info and would like to add the timezone into the existed datetime instance, how can I do? d = ...
2
votes
2answers
790 views

Python - Pytz - List of Timezones?

Regarding Python and Pytz, I have two questions: 1.I would like to know what are all the possible values for the timezone argument worldwide? Eg: 'US/Eastern' 'US/Pacific' from datetime import ...
1
vote
2answers
77 views

Python & pytz: Figure out if a timezone supports DST and what the DST and non-DST UTC offsets are

I am using python 2.7.3 and pytz. For a given timezone which describes a region (e.g. America/New_York), I would like to know if the timezone observes DST during part of the year or not. I care about ...
2
votes
1answer
105 views

pytz alternative - using OS timezone as source?

Are there any simpler pytz alternative using OS timezone/dst as as source? a ctypes wrapper or something doesn't require compiling would be welcome. Edit: the beast
0
votes
0answers
64 views

How does one currently convert the datastore's timestamps to local time in appengine?

I have a fairly simple scenario that I am having a difficult time finding what would seem to require a simple answer! I have an audit log in my application that has the time an action was performed ...
0
votes
1answer
155 views

Python pytz: non-existent time gets AmbiguousTimeError, not NonExistentTimeError

How can I tell if a local time is non-existent? I'm trying with pytz, but it throws an AmbiguousTimeError, not a NonExistentTimeError. 2013-3-31 02:30 will never happen in Copenhagen due to daylight ...
1
vote
1answer
100 views

Python Django: tzinfo doesn't work for DB insertion. But why does .now(local_tz) work?

I am using Django. in settings: TIME_ZONE = 'Europe/Copenhagen' USE_TZ = True Due to DST, clock skips an hour on 2013-3-31. 01:59 goes to 03:00 I views: The date and time are given in local ...
3
votes
2answers
105 views

Python pytz: what happens if a country does away with DST?

OK, this is more a curiosity question, but how does pytz know all the daylight savings times (DST)? For example, that 'Europe/Copenhagen' time switches in March and October. Or rather, what happens ...
0
votes
3answers
396 views

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 ...
2
votes
1answer
91 views

Incorrect time zone conversion with datetime in python [duplicate]

Possible Duplicate: Python datetime object show wrong timezone offset I have a problem with conversion between timezones in Python, using the pytz library (last version 2012h). Here in ...
0
votes
2answers
118 views

AmbiguousTimeError Celery|Django

So i have a django site that is giving me this AmbiguousTimeError. I have a job activates when a product is saved that is given a brief timeout before updating my search index. Looks like an update ...
1
vote
1answer
159 views

UnknownTimeZoneError when using RequestContext

When using Django 1.4, I am getting an UnknownTimeZoneError for America/Chicago when using RequestContext, but it works without it...any ideas? Error Message UnknownTimeZoneError at ...
2
votes
2answers
203 views

How to get system timezone setting and pass it to pytz.timezone?

We can use time.tzname get a local timezone name, but that name is not compatible with pytz.timezone. In fact, the name returned by time.tzname is ambiguous. This method returns ('CST', 'CST') in my ...
1
vote
1answer
73 views

Time Zone names in local language

Is there a methods to retrieve timezone names in another language? In Python, if I do something like this: for tz in pytz.common_timezones_set : print tz The result is in english, but what if I ...
3
votes
2answers
268 views

Get country code for timezone using pytz?

I'm using pytz. I've read through the entire documentation sheet, but didn't see how this could be done. I have a timezone: America/Chicago. All I want is to get the respective country code for this ...
2
votes
3answers
345 views

Localizing Epoch Time with pytz in Python

Im working on converting epoch timestamps to dates in different timezones with pytz. What I am trying to do is create a DateTime object that accepts an Olson database timezone and an epoch time and ...
4
votes
1answer
221 views

Providing pytz version in setup.py requirements

The problem I wanted to include requirement for pytz in setup.py script in my library, but wanted also to set the minimal version required. But the version numbers used by pytz module (eg. "2012f") ...
0
votes
1answer
51 views

Is there a URL for pytz zoneinfo for gae?

Is there a URL link available containing the zone names like in the file zoneinfo.zip distributed with pytz.gae?
1
vote
2answers
103 views

PYTZ 'America/Edmon' offset wrong [duplicate]

Possible Duplicate: Weird timezone issue with pytz This seems wrong: >>> import pytz >>> z1 = timezone('America/Edmonton') >>> z2 = timezone('US/Mountain') ...
1
vote
3answers
337 views

From a timezone and a UTC time, get the difference in seconds vs local time at that point in time

This should be very simple, but I can't quite figure it out in Python. I want to have a function which takes two arguments, a UTC time in seconds and a zoneinfo name like 'Europe/Vienna' and returns ...
2
votes
2answers
1k views

pytz and astimezone() cannot be applied to a naive datetime

I have a date and I need to make it time zone aware. local_tz = timezone('Asia/Tokyo') start_date = '2012-09-27' start_date = datetime.strptime(start_date, "%Y-%m-%d") start_date = ...
1
vote
1answer
330 views

Unix timestamp to datetime in django with timezone

I have a javascript calendar that is sending me a unixtimestamp. I am in Singapore. I want this timestamp to be interpreted as a Singapore timestamp and then converted to utc for comparisons with the ...
1
vote
3answers
324 views

How to handle DST and TZ in recurring events?

Does dateutil rrule support DST and TZ? Need something similar to iCalendar RRULE. If not - how to tackle this problem (scheduling recurring events & DST offset change) Imports >>> ...
0
votes
1answer
455 views

Python - get UTC offset by seconds

Based on this code, how do I get the UTC offset of a given date by seconds. get UTC offset from time zone name in python Currently, I have this code: Python 2.7.3 (default, Jul 3 2012, 19:58:39) ...
-1
votes
2answers
318 views

Issues with Django and pytz

I've followed the time zone documentation on the Django site with no luck. My issue is that I have a select box on my template that should be populated with common timezones provided by pytz, but, for ...
2
votes
1answer
251 views

Using pytz to convert from a known timezone to local

I'm receiving a date in a fixed timezone. I need to convert it to the local machine's timezone, but I don't know what that is. How can I do this using pytz (not dateutil)? I've found plenty of ...
0
votes
3answers
531 views

Daylight savings time in python

I am writing a program which deals a lot with timezones and crossing them. The 2 things i deal with most are creating a datetime object from "now" and then localizing a naive datetime object. To ...
0
votes
1answer
284 views

installing pytz in gae is giving UnknownTimeZoneError

unutbu answered my previous question nicely here 2, but there does not appear to be a pytz to import directly using my SDK. So I went looking for alternatives and found, for example this answer which ...
2
votes
1answer
477 views

Is there any case where datetime.fromtimestamp returns an incorrect result using pytz?

pytz asks you to use the .astimezone method for all time conversion to and from UTC. However, in one special case — datetime.fromtimestamp — it looks like you should be able to use the Python ...
1
vote
3answers
296 views

How to execute a command at exact time once a day in Django?

I am working on a Django web based project in which i need to build a application which work in the following sequence: 1) user open a page in which he need to enter a command and a time 2) Django ...
8
votes
3answers
989 views

Django IPython sqlite complains about naive datetime

I have a new project in Django 1.4, using sqlite db. Also using django_extenstions' shell_plus with no problems. When I installed IPython, both shell and shell_plus started to complain about: ...
1
vote
1answer
109 views

Python: Weird behavior with pytz timezones

I'm in Argentina, my time is GMT-3 (http://wwp.greenwichmeantime.com/time-zone/south-america/argentina/) I was playing with Pytz and noticed something weird, take a look: from pytz import timezone ...
0
votes
2answers
115 views

How to pick a timezone based on UTC offset?

i've got a silly problem. I'm parsing Facebook user data, and I get the timezone as a number: timezone: The user's timezone offset from UTC For me ('America/Argentina/Buenos_Aires') it's -3. ...

1 2 3