I have a dictionary of strings that are formatted in a UTC ISO 8601 manner.
Example: "2022-11-05T22:36:48.701614+01:00"
I want to be able to convert these into seconds so that I can calculate differences and such. I see there is the "datetime" python library that seems well equipped to handle this. But, I can't quite get it to work.
Thanks
I tried the datetime.timezone.fromutc() function but it seems to expect the string already formatted.