Tagged Questions
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
4answers
817 views
How to manage timezones in a web application?
I wan't to manage the different timezones of my users in my web application, but I have no idea where to start. I have to save the local time of each user in my database?, or maybe make the conversion ...
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
2answers
223 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
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
3answers
710 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 ...