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.

link|improve this question

75% accept rate
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
feedback

4 Answers

up vote 6 down vote accepted

Can you use pytz.timezone._tzname?

>>> import pytz as tz
>>> CT = tz.timezone('America/Chicago')
>>> CT.zone
'America/Chicago'
>>> CT._tzname
'CST'
>>> ET = tz.timezone('America/New_York')
>>> ET._tzname
'EST'
>>>

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
>>> iday = dt(2010, 7, 4, 0, 1, 1)
>>> bar = CT.localize(iday)
>>> bar.tzname()
'CDT'
>>> christmas = dt(2010, 12, 25, 0, 1, 1)
>>> foo = CT.localize(christmas)
>>> foo.tzname()
'CST'
>>> 
link|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
feedback

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'
link|improve this answer
feedback

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'
link|improve this answer
feedback

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

link|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 at 20:25
feedback

Your Answer

 
or
required, but never shown

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