
I have a string that contains a local time "2024-12-31 23:59:59". The local time is "America/Edmonton".
The time zone on my machine is UTC, so datetime.now() returns UTC time.
if the current time is less than 30 minutes before the time in my string, I want to generate a time that is 30 minutes from now, in the local time zone. I will be comparing this time to a datetime.strptime() later in my code.
I would normally just use datetime.datetime.now() + datetime.timedelta(minutes=30) but because my system is using UTC time I end up with a UTC time.
How can I convert my offset UTC time to local time so that I can compare it to a datetime.strptime() time?
The time zone on my machine is UTC, so datetime.now() returns UTC time.
if the current time is less than 30 minutes before the time in my string, I want to generate a time that is 30 minutes from now, in the local time zone. I will be comparing this time to a datetime.strptime() later in my code.
I would normally just use datetime.datetime.now() + datetime.timedelta(minutes=30) but because my system is using UTC time I end up with a UTC time.
How can I convert my offset UTC time to local time so that I can compare it to a datetime.strptime() time?