UTC偏移的PYTZ时区



我正在使用python使用Facebook的图形API。对于任何user_id,它都会使用户的时区为浮点,代表UTC的偏移。

示例:对于印度的某人,它提供了5.5

如何将其转换为有效的timezone,例如Asia/Kolkata

我已经研究了pytz,但没有找到任何合适的方法。

您可以通过查看所有条目找到与Olson数据库中最后一个条目相匹配的所有时区(忽略DST)。

代码:

import datetime as dt
import pytz
def possible_timezones(tz_offset, common_only=True):
    # pick one of the timezone collections
    timezones = pytz.common_timezones if common_only else pytz.all_timezones
    # convert the float hours offset to a timedelta
    offset_days, offset_seconds = 0, int(tz_offset * 3600)
    if offset_seconds < 0:
        offset_days = -1
        offset_seconds += 24 * 3600
    desired_delta = dt.timedelta(offset_days, offset_seconds)
    # Loop through the timezones and find any with matching offsets
    null_delta = dt.timedelta(0, 0)
    results = []
    for tz_name in timezones:
        tz = pytz.timezone(tz_name)
        non_dst_offset = getattr(tz, '_transition_info', [[null_delta]])[-1]
        if desired_delta == non_dst_offset[0]:
            results.append(tz_name)
    return results

测试代码:

print(possible_timezones(5.5, common_only=False))

结果:

['Asia/Calcutta', 'Asia/Colombo', 'Asia/Kolkata']

相关内容

  • 没有找到相关文章

最新更新