vote up 0 vote down star

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 not cross-platform

flag

3 Answers

vote up 2 vote down check
>>> import datetime
>>> today = datetime.datetime.now()
>>> insummer = datetime.datetime(2009,8,15,10,0,0)
>>> from pytz import reference
>>> localtime = reference.LocalTimezone()
>>> localtime.tzname(today)
'PST'
>>> localtime.tzname(insummer)
'PDT'
>>>
link|flag
vote up 1 vote down

time.timezone returns current timezone offset. there is also a datetime.tzinfo, if you need more complicated structure.

link|flag
time.timezone() just returns the offset from UTC. i want a tzinfo object. so i would probably would what the function to: 1. define a class corresponding to the tzinfo object 2. instanciate the object 3. return it – random guy Nov 5 at 15:21
datetime docs have an example that explains the use of tzinfo. – SilentGhost Nov 5 at 15:26
vote up 1 vote down

I have not used it myself, but dateutil.tz.tzlocal() should do the trick.

http://labix.org/python-dateutil#head-50221b5226c3ccb97daa06ea7d9abf0533ec0310

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.