I need to know the way of using Abbreviated timezone name like PST, IST etc on pytz.
Now I can be able to convert between timezone using the timezone name like "America/Los_Angeles".
Instead I need to find the way of using timezone name like PST, IST etc.,
Sample code I have used now for conversion.
def local2utc(self, dt):
from_zone = tz.gettz('America/Los_Angeles')
to_zone = tz.gettz('UTC')
local = dt.replace(tzinfo=from_zone)
print("converted time")
print(local.astimezone(to_zone).replace(tzinfo = None))
return local.astimezone(to_zone).replace(tzinfo = None)
Someone let me know the way of achieving the same.