Yes, Joseph, Python is giving us the correct ISO format. Please continue to use
'T' as the character to use as the date/time value separator. This is as per ISO
8601 best practice:
http://en.wikipedia.org/wiki/ISO_8601
We can ignore the timezone offset in Evelyn's example because MCP is recording
the timestamp as UTC.
http://en.wikipedia.org/wiki/UTC
That means we can reformat for any other timezone offset after the fact. Keeping
the microsecond value (decimal value after seconds) only adds to the accuracy of
the timestamp so I don't see any harm in keeping that if that is the default
we're getting from the Python library.
Cheers,
--peter