0

我正在使用 babel 和 pytz 来获取时区。然而,对于美国的大部分地区,它映射到下拉框中没有那么有用的东西:

“America/New_York”显示“东部时间”,“America/Nipigon”也显示“东部时间”。

有没有办法进行这种转换以添加城市信息?其他时区似乎还可以,例如“亚洲/雅加达”转换为“印度尼西亚(雅加达)时间”

4

1 回答 1

2

适用于 Babel 0.9.5 和 pytz 2010b。

py.tz

#!/usr/bin/env python

import pytz
import babel.dates

tz = pytz.timezone('America/New_York')
print babel.dates.get_timezone_location(tz)

输出

$ python tz.py 
United States (New York) Time

你是如何运行它的?什么版本?


如果您坚持使用现有版本,那么为什么不只使用 Continent/City 条目呢?

这是您的起点。它决定了大陆和城市,因此您可以根据需要对其进行格式化。

tzs.py

#!/usr/bin/env python

import pytz
import babel.dates
import re

country_timezones = {}
for (country, tzlist) in pytz.country_timezones.iteritems():
    country_name = pytz.country_names[country]
    cities = []
    for timezone in tzlist:
        # remove continent
        city = re.sub(r'^[^/]*/', r'', timezone)
        # Argentina has an extra "Argentina/" on my system (pytz 2010b)
        city = re.sub(country_name + '/', '', city)
        # Indiana and North Dakota have different rules by country
        # change Indiana/Location to Location, Indiana
        city = re.sub(r'^([^/]*)/(.*)', r'\2, \1', city)
        # change underscores to spaces
        city = re.sub(r'_', r' ', city)
        cities.append(city)  
    country_timezones[country_name] = cities

for country in sorted(country_timezones):
    print country
    for city in sorted(country_timezones[country]):
        print "\t%s" % (city)

输出

Aaland Islands
        Mariehamn
Afghanistan
        Kabul
...
Indonesia
        Jakarta
        Jayapura
        Makassar
        Pontianak
...
United States
        Adak
        Anchorage
        Boise
        Center, North Dakota
        Chicago
        Denver
        Detroit
于 2011-02-08T08:44:09.320 回答