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.
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:
Test Code:
Results: