I'm not sure why, I thought the time difference between CET and UTC was one hour. Now I am debugging code and have this:
(Pdb++) server_date
datetime.datetime(2021, 1, 16, 1, 15, 58, 643927, tzinfo=<DstTzInfo 'Europe/Ber
lin' LMT+0:53:00 STD>)
utc_date = server_date.astimezone(pytz.utc)
(Pdb++) utc_date
datetime.datetime(2021, 1, 16, 0, 22, 58, 643927, tzinfo=<UTC>)
Why is Berlin 53min from UTC and not one hour? I'm confused. Is this something with the intermediate timezones like 5:45 for random countries? What did I miss in geography class, lol...