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, ...
1
vote
1answer
75 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 ...
0
votes
3answers
708 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 ...