Pytz Timezone from UTC offset

5.8k Views Asked by At

I'm using Facebook's graph API with Python. For any user_id, it gives the timezone of the user as a float which represents the offset from UTC.

Example: For someone in India, it gives 5.5

How would I convert this into a valid timezone like Asia/Kolkata?

I've looked into pytz but didn't find any suitable ways to do it.

1

There are 1 best solutions below

0
On

You can find all of time zones that match a given offset (ignoring DST) for the last entry in the Olson database by looking at all entries.

Code:

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

Test Code:

print(possible_timezones(5.5, common_only=False))

Results:

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