Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 spelled out like America/NewYork.

Does pytz give me those standard names somewhere, or will i have to manually do this via a table? This could potentially get messy, since for example places are EST in a season and shift to showing EDT during others.

share|improve this question
2  
Do note that the common name is not unique, and should only be used if it's perfectly clear which country you are in. There is for example an EST in Australia as well. – Lennart Regebro May 25 '11 at 9:13

4 Answers

up vote 11 down vote accepted

EDIT

If you need this derived from a datetime object localized with pytz...

>>> import pytz as tz
>>> CT = tz.timezone('America/Chicago')
>>> from datetime import datetime as dt
>>> indep_day = dt(2010, 7, 4, 0, 1, 1)
>>> bar = CT.localize(indep_day)
>>> bar.tzname()
'CDT'
>>> christmas = dt(2010, 12, 25, 0, 1, 1)
>>> foo = CT.localize(christmas)
>>> foo.tzname()
'CST'
>>> 
share|improve this answer
Thanks. That works! – Sidmitra May 10 '11 at 7:55
@Sidmitra, you're most welcome. Good luck with your project – Mike Pennington May 10 '11 at 7:55
the underscore prefix indicates a member that isn't part of the public API, and should be avoided if possible – Max Dec 3 '12 at 11:44
@max, I'm not using the underscore to answer his question... that was when I didn't understand exactly what he wanted – Mike Pennington Dec 3 '12 at 14:04
it is incorrect to use ._tzname even if it were public API because the name depends on current date (it changes due DST, political decisions) i.e., you must provide datetime object to get the correct name – J.F. Sebastian Dec 4 '12 at 17:34
show 1 more comment

You can use the tzname() method of tzinfo instances:

>>> tz = timezone('America/St_Johns')
>>> normal = datetime(2009, 9, 1)
>>> tz.tzname(normal, is_dst=False)
'NDT'
share|improve this answer

If you are looking for the abbreviations then there are a few ways that come to mind.

First would be:

>>> from pytz import timezone
>>> eastern = timezone('US/Eastern')
>>> eastern._tzname
'EST'

Although since that references a property with the preceding single underscore it may be considered private and might not be the best place to grab it. The other would be from a localized datetime object.

>>> from datetime import datetime
>>> loc_dt = eastern.localize(datetime.now())
>>> loc_dt.strftime('%Z')
'EST'
share|improve this answer

I don't know if and how pytz could give the dates of DST transitions for each year, since they change from one year to another.

You can find and scrape this information here: Daylight Saving Time

There's also the list of time zone acronyms and abbreviations

share|improve this answer
pytz has its own Olson timezone DB, and sees new releases after an Olson DB new release. – Joao Figueiredo May 10 '11 at 8:37
@stack_zen Thank you. Updates of the database are triggered automatically, like security updates of Microsoft for exemple ? Or must they be triggered manually ? I think that not all transitions dates are avalaible at a given date in advance – eyquem May 10 '11 at 8:55
@eyquem: You update the pytz library whenever there is a new database that you need. It's not automatic in any way. – damd May 13 '12 at 20:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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