def convert_to_tz_from_utc(utc_time, tz): local_time = utc_time.replace(tzinfo=pytz.utc).astimezone(pytz.timezone(tz)) return local_time