I have a date, saved as a string:
my_utc_date_str = "2019-09-15T20:42:15"
This is saved as a UTC date string
My local zone, is:
America/Los_Angeles
What I would like to get is:
2019-09-15 13:42:15
Which is that UTC date, localized to USA Pacific Time Zone.
I tried various combinations of DateTime, Time and Date, with no luck. Any ideas bow to do this, without changing the Time Zone for the session?