Skip to content
Advertisement

How can I use datetime.strptime on a string in the format ‘0000-00-00T00:00:00+00:00’?

Due to my application’s circumstances, I would prefer to use datetime.strptime instead of dateutil.parser.

After looking at the docs, I thought that %Y-%m-%dT%H:%M:%S%z may be the proper format for parsing a date string like this. Yet it still gives me an error.

Example

JavaScript
JavaScript

Advertisement

Answer

The easiest way to deal with timezones is to use dateutil.parser:

JavaScript

But you have to pass a valid datetime-value (not only zeros…)

If you want to use strptime(), the timezone has to be in the format 0000 not 00:00, so this works:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement