An ISO 8601 date/time/duration parser and formatter
.. image:: https://travis-ci.org/gweis/isodate.svg?branch=master
:target: https://travis-ci.org/gweis/isodate
:alt: Travis-CI
.. image:: https://coveralls.io/repos/gweis/isodate/badge.svg?branch=master
:target: https://coveralls.io/r/gweis/isodate?branch=master
:alt: Coveralls
.. image:: https://img.shields.io/pypi/v/isodate.svg
:target: https://pypi.python.org/pypi/isodate/
:alt: Latest Version
.. image:: https://img.shields.io/pypi/l/isodate.svg
:target: https://pypi.python.org/pypi/isodate/
:alt: License
This module implements ISO 8601 date, time and duration parsing. The implementation follows ISO8601:2004 standard, and implements only date/time representations mentioned in the standard. If something is not mentioned there, then it is treated as non existent, and not as an allowed option.
For instance, ISO8601:2004 never mentions 2 digit years. So, it is not intended by this module to support 2 digit years. (while it may still be valid as ISO date, because it is not explicitly forbidden.) Another example is, when no time zone information is given for a time, then it should be interpreted as local time, and not UTC.
As this module maps ISO 8601 dates/times to standard Python data types, like date, time, datetime and timedelta, it is not possible to convert all possible ISO 8601 dates/times. For instance, dates before 0001-01-01 are not allowed by the Python date and datetime classes. Additionally fractional seconds are limited to microseconds. That means if the parser finds for instance nanoseconds it will round it to microseconds.
Currently there are four parsing methods available.
As ISO 8601 allows to define durations in years and months, and timedelta does not handle years and months, this module provides a Duration class, which can be used almost like a timedelta object (with some limitations). However, a Duration object can be converted into a timedelta object.
There are also ISO formatting methods for all supported data types. Each xxx_isoformat method accepts a format parameter. The default format is always the ISO 8601 expanded format. This is the same format used by datetime.isoformat:
* time_isoformat:
Intended to create ISO time strings with default format
*hh:mm:ssZ*.
* date_isoformat:
Intended to create ISO date strings with default format
*yyyy-mm-dd*.
* datetime_isoformat:
Intended to create ISO date-time strings with default format
*yyyy-mm-ddThh:mm:ssZ*.
* duration_isoformat:
Intended to create ISO duration strings with default format
*PnnYnnMnnDTnnHnnMnnS*.
* tz_isoformat:
Intended to create ISO time zone strings with default format
*hh:mm*.
* strftime:
A re-implementation mostly compatible with Python's *strftime*, but
supports only those format strings, which can also be used for dates
prior 1900. This method also understands how to format *datetime* and
*Duration* instances.
This module can easily be installed with Python standard installation methods.
Either use python setup.py install or in case you have setuptools or distribute available, you can also use easy_install.
The parser accepts several date/time representation which should be invalid according to ISO 8601 standard.
The doc strings and unit tests should provide rather detailed information about the methods and their limitations.
The source release provides a setup.py script, which can be used to run the unit tests included.
Source code is available at <http://github.com/gweis/isodate>
_.
This to do list contains some thoughts and ideas about missing features, and parts to think about, whether to implement them or not. This list is probably not complete.
* time formating does not allow to create fractional representations.
* parser for ISO intervals.
* currently microseconds are always padded to a length of 6 characters.
trailing 0s should be optional
* parse_datetime:
- complete documentation to show what this function allows, but ISO forbids.
and vice verse.
- support other separators between date and time than 'T'
* parse_date:
- yeardigits should be always greater than 4
- dates before 0001-01-01 are not supported
* parse_duration:
- alternative formats are not fully supported due to parse_date restrictions
- standard duration format is fully supported but not very restrictive.
* Duration:
- support fractional years and month in calculations
- implement w3c order relation? (`<http://www.w3.org/TR/xmlschema-2/#duration-order>`_)
- refactor to have duration mathematics only at one place.
- localize __str__ method (does timedelta do this?)
- when is a Duration negative?
- normalize Durations. months [00-12] and years ]-inf,+inf[