Tagged Questions
5
votes
1answer
71 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
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 = ...
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
1answer
152 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
1answer
87 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
3answers
211 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
64 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
149 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
1answer
379 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
1answer
717 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
758 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
210 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
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
2answers
502 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 ...