isodate
isodate copied to clipboard
ISO 8601 date/time parser
Else it is no easy to understand how to use the isodate module. Thanks in advance
I'm working on my [calendar-cli](https://github.com/tobixen/calendar-cli). A calendar event typically spans a time interval, and ISO 8601 does specify three standard ways of writing a time interval (according to [wikipedia](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). I've...
Is that intentional or just a blunder? Tests should just be available to developers and run by the pipeline, I see no reason to distribute them to users. Other projects...
Solves #75
We are making a SOAP API request to SAP which occasionally obtains timestamps strings where seconds is 59 and milliseconds 9999999. This causes the parse_time method to give the following...
ISO 8601 supports nanosecond level formats. For compatibility with implementations which utilize nanoseconds, its difficult to work around this incompatibility. I realize the documentation mentions "fractional seconds are limited to...
Added errror handling `parse_dateTime` so that time == '24:00:00' is accepted. Handles Issue #85
Iso 8601 recognises 24:00:00 as endtime of a day afaik. With the code ``` isodatetime.parse_datetime("1999-12-31T24:00:00") ``` i would expect as result: ``` datetime.datetime(2000, 1, 1, 0, 0) ``` Instead only...
I work with historical data and also BCE dates, however these currently result in an error, e.g.: ` Unrecognised ISO 8601 date format: '-0663-01-01'` Yet according to ISO 8601 BCE...