Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
utc time to est time
#1
ive been trying to figure out how to convert this utc date time format "2020-11-02T08:30:00-05:00" to a est "%Y-%m-%d %H:%M:%S" type format.
Reply
#2
Do you want it to figure out that because the TZ offset is -05:00 that it should be EST? Unfortunately, that's only an assumption. Other timezones besides US/Eastern may currently have a 5 hour offset.

Or do you want to take the input time and display it in the current US/Eastern local time? If you have 3.9 and a machine with a timezone DB (that probably means installing the tzdata module if you're on windows), then the following would work.

>>> u = '2020-11-02T08:30:00-05:00'
>>> import datetime
>>> import zoneinfo
>>> datetime.datetime.fromisoformat(u).astimezone(zoneinfo.ZoneInfo("US/Eastern")).strftime("%Y-%m-%d %H:%M:%S")
'2020-11-02 08:30:00'
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Filer and sort files by modification time in a directory tester_V 6 123 19 minutes ago
Last Post: tester_V
Question Convert UTC now() to local time to compare to a strptime() Calab 2 155 Apr-29-2024, 07:24 PM
Last Post: deanhystad
  Date Time Series Help...Please spra8560 2 399 Feb-01-2024, 01:38 PM
Last Post: spra8560
  Python date format changes to date & time 1418 4 644 Jan-20-2024, 04:45 AM
Last Post: 1418
  time difference bettwenn logs enkliy 14 1,028 Nov-21-2023, 04:51 PM
Last Post: rob101
Question Need Help with Vehicle Routing Problem with Time Windows (VRPTW) in Python kasper321421312 1 595 Nov-10-2023, 08:19 PM
Last Post: snippsat
  How do I stream and record at the same time with arducam? traderjoe 0 482 Oct-23-2023, 12:01 AM
Last Post: traderjoe
  i tried to install python for the first time today and pretty certain im being remote brianlj 2 568 Oct-03-2023, 11:15 AM
Last Post: snippsat
  [Python 2.7] Why can't I press [ESC] a fourth time? Ashwood 3 677 Aug-27-2023, 02:01 PM
Last Post: deanhystad
  Hard time trying to figure out the difference between two strings carecavoador 2 693 Aug-16-2023, 04:53 PM
Last Post: carecavoador

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020