Tagged Questions

5
votes
1answer
74 views

Python DST & Time Zone Detection After Addition

So I currently have a line of code which looks like this: t1 = datetime(self.year, self.month, self.day, self.hour, self.minute, self.second) ... t2 = timedelta(days=dayNum, ...
5
votes
1answer
248 views

Issue with python/pytz Converting from local timezone to UTC then back

I have a requirement to convert a date from a local time stamp to UTC then back to the local time stamp. Strangely, when converting back to the local from UTC python decides it is PDT instead of the ...
5
votes
2answers
2k views

pytz utc conversion

What is the right way to convert a naive time and a tzinfo into an utc time? Say I have: d = datetime(2009, 8, 31, 22, 30, 30) tz = timezone('US/Pacific') First way, pytz inspired: d_tz = ...
4
votes
1answer
293 views

How do I create a unix timestamp that doesn't adjust for localtime?

So I have datetime objects in UTC time and I want to convert them to UTC timestamps. The problem is, time.mktime makes adjustments for localtime. So here is some code: import os import pytz ...
4
votes
1answer
2k views

Changing timezone on an existing Django project

Like an idiot, I completely overlooked the timezone setting when I first built an application that collects datetime data. It wasn't an issue then because all I was doing was "time-since" style ...
3
votes
2answers
154 views

converting from local to utc timezone

I'm attempting to craft a function that takes a time object and converts it to UTC time. The code below appears to be off by one hour. When i run noon through the converter, i get back 18:00:00. ...
3
votes
4answers
357 views

How to get the common name for a pytz timezone eg. EST/EDT for America/New_York

Given a pytz timezone for a particular user(calculated from his offset), i want to display the common name for that timezone. I'm assuming people are more accustomed to seeing EST or PST instead of ...
3
votes
2answers
191 views

pytz: Why do these different methods give different UTC offsets?

When creating a datetime object in a specific time zone using pytz I get a different UTC offset depending on whether I use datetime.datetime() or datetime.datetime.now(). now() seems to give the ...
3
votes
1answer
146 views

Python: pytz returning unusable __repr__()

I understand that repr()'s purpose is to return a string, that can be used to be evaluated as a python command and return the same object. Unfortunately, pytz does not seem to be very friendly with ...
3
votes
2answers
1k views

Python datetime not including DST when using pytz timezone

If I convert a UTC datetime to swedish format, summertime is included (CEST). However, while creating a datetime with sweden as the timezone, it gets CET instead of CEST. Why is this? >>> # ...
2
votes
2answers
305 views

Checking if a datetime object in mongodb is in UTC format or not from python

In mongodb, a field called joining_date appears as "Sun Dec 19 2010 05:35:55 GMT+0000 (UTC)".This as you see is a UTC date . But the same field when accessed from pymongo appears as ...
2
votes
1answer
161 views

Python datetime object show wrong timezone offset

I am try creating a datetime object in python using datetime and pytz, the offset shown is wrong. import datetime from pytz import timezone start = datetime.datetime(2011, 6, 20, 0, 0, 0, 0, ...
2
votes
3answers
1k views

pytz localize vs datetime replace

I'm having some weird issues with pytz's .localize() function. Sometimes it wouldn't make adjustments to the localized datetime: .localize behaviour: >>> tz <DstTzInfo 'Africa/Abidjan' ...
1
vote
0answers
15 views

UnknownTimezoneError Exception Raised with Python Application Compiled with Py2Exe

I'm having a problem distributing an application that utilizes pytz. I'm using Py2Exe to create an executable from my Python source. For a simple example of the problem I'm having, I have: ...
1
vote
1answer
98 views

How do you convert a naive datetime to DST-aware datetime in Python?

I'm currently working on the backend for a calendaring system that returns naive Python datetimes. The way the front end works is the user creates various calendar events, and the frontend returns ...
1
vote
1answer
91 views

How to determine when DST starts or ends in a specific location in Python?

I'm looking for a method of determining when DST starts or ends for a given timezone in a Python script I'm working on. I know pytz can convert the UTC dates I'm working into localtime, and will take ...
1
vote
1answer
67 views

get the DST boundaries of a given timezone in python

Is it possible to get the DST boundaries of a given timezone with pytz?
1
vote
3answers
247 views

Checking if a date string is in UTC format

I have a date string like "2011-11-06 14:00:00+00:00". Is there a way to check if this is in UTC format or not ?. I tried to convert the above string to a datetime object using utc = ...
1
vote
1answer
65 views

Checking if date is in UTC format

Im using the pytz module to translate a date in America/Los_Angeles timezone to utc by the code below : TZ = 'America/Los_Angeles' from = pytz.timezone(TZ) utc = ...
1
vote
1answer
184 views

python - remote hosts timezone vs local

I'm building a web frontend for remote logs monitoring, having to manage about 10 different geographic locations I've bumped into the 3 headed hellhound some of you already have. Is there any way to ...
1
vote
1answer
153 views

How to check if a datetime object is localized with pytz?

I want to store a datetime object with a localized UTC timezone. The method that stores the datetime object can be given a non-localized datetime (naive) object or an object that already has been ...
1
vote
2answers
588 views

python incorrect timezone conversion using pytz

I wrote the following script in python to convert datetime from any given timezone to EST. from datetime import datetime, timedelta from pytz import timezone import pytz utc = pytz.utc # ...
1
vote
1answer
429 views

Python - Setting a datetime in a specific timezone (without UTC conversions)

Just to be clear, this is python 2.6, I am using pytz. This is for an application that only deals with US timezones, I need to be able to anchor a date (today), and get a unix timestamp (epoch time) ...
1
vote
2answers
234 views

pytz and Etc/GMT-5

I'm having trouble understanding the conversion between the "Etc/GMT-5" timezone and UTC in pytz. >>> dt = datetime(2009, 9, 9, 10, 0) # September 9 2009, 10:00 >>> gmt_5 = ...
1
vote
1answer
773 views

Parse timezone abbreviation to UTC

How can I convert a date time string of the form Feb 25 2010, 16:19:20 CET to the unix epoch? Currently my best approach is to use time.strptime() is this: def to_unixepoch(s): # ignore the time ...
1
vote
5answers
788 views

How to properly add PyTZ to a Google App Engine application?

This is a little embarrassing, but I have not been able to find good resources on this topic. I'm working on a Google App Engine application that requires sophisticated time zone conversions. Since I ...
1
vote
3answers
221 views

how to get tz_info object corresponding to current timezone?

Is there a cross-platform function in python (or pytz) that returns a tzinfo object corresponding to the timezone currently set on the computer? environment variables cannot be counted on as they are ...
1
vote
2answers
427 views

pytz: Why is normalize needed when converting between timezones?

I'm reading the not so complete pytz documentation and I'm stuck on understand one part of it. Converting between timezones also needs special attention. This also needs to use the normalize ...
1
vote
3answers
2k views

How do I get the UTC time of “midnight” for a given timezone?

The best I can come up with for now is this monstrosity: >>> datetime.utcnow() \ ... .replace(tzinfo=pytz.UTC) \ ... .astimezone(pytz.timezone("Australia/Melbourne")) \ ... ...
0
votes
1answer
36 views

Convert UTC time from Datetimefield (models.py) to local time

A Event class in models.py class Event(models.Model): timestamp = models.DateTimeField() message = models.TextField() def __unicode__(self): return "'%s' at %s" % (self.message, ...
0
votes
1answer
41 views

know GMT difference

I have following code ktm = timezone('Asia/Katmandu') If I want to know zone of ktm, I can do like ktm.zone I know, Kathmandu is GMP+5:45. Is there any way to get this difference in pytz. ...
0
votes
1answer
119 views

Import error using gaepytz (pytz in gae)

I am trying to use pytz on gae and found gaepytz. But, I get an import error when importing it and I think it is because I am not placing the original pytz and gaepytz side by side correctly in my app ...
0
votes
1answer
68 views

Converting correctly between tz unaware time, UTC and working with timezones in python

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 ...
0
votes
1answer
314 views

Python pytz Converting a timestamp (string format) from one timezone to another

I have a timestamp with timezone information in string format and I would like to convert this to display the correct date/time using my local timezone. So for eg... I have timestamp1 = 2011-08-24 ...
0
votes
2answers
102 views

Module pytz was already imported

I keep getting the following error while running Python code: C:\Python26\lib\site-packages\pytz\__init__.py:32: UserWarning: Module pytz was already imported from ...
0
votes
2answers
549 views

Converting python datetime to timestamp and back in UTC still uses local timezone

I'm working with a code that gives me utc timestamps and I want to convert them to appropriate datetimes. Unfortunately when I test simple cases with pytz the datetime has an added 6 hours (the CST ...
0
votes
1answer
282 views

Better python datetime display?

I'm using babel and pytz to get the time zones. However, for most of America, it maps to something not as helpful in a dropdown box: "America/New_York" displays "Eastern Time", "America/Nipigon" ...
0
votes
3answers
727 views

Is it possible to get a timezone in python given a utc timestamp and a utc offset?

I have data that is the utc offset and the utc time, given that is it possible to get the users local timezone (mainly to figure if it is dst etc. probably using pytz), similar to the function in php ...