This docs mention moment.ISO_8601 as a formatting option (from 2.7.0 – http://momentjs.com/docs/#/parsing/special-formats/), but neither of these work (even 2.7.0): var date = moment(); date.format(moment.ISO_8601); // error moment.format(date, moment.ISO_8601); //...
  • May 19, 2022
  • 0 Comments
I have a file. In Python, I would like to take its creation time, and convert it to an ISO time (ISO 8601) string while preserving the fact that...
  • May 2, 2022
  • 0 Comments
I need to parse RFC 3339 strings like "2008-09-03T20:56:35.450686Z" into Python’s datetime type. I have found strptime in the Python standard library, but it is not very convenient. What...
  • April 21, 2022
  • 0 Comments