Convert datetime.timedelta to ISO 8601 duration in Python?

Given datetime.timedelta, how to convert it to an ISO 8601 duration format string?

Example

>>> iso8601(datetime.timedelta(0, 18, 179651))
'PT18.179651S'
+4
source share
1 answer

This is a function from the Tin Can Python project (Apache License 2.0 version) that can perform the conversion:

def iso8601(value):
    # split seconds to larger units
    seconds = value.total_seconds()
    minutes, seconds = divmod(seconds, 60)
    hours, minutes = divmod(minutes, 60)
    days, hours = divmod(hours, 24)
    days, hours, minutes = map(int, (days, hours, minutes))
    seconds = round(seconds, 6)

    ## build date
    date = ''
    if days:
        date = '%sD' % days

    ## build time
    time = u'T'
    # hours
    bigger_exists = date or hours
    if bigger_exists:
        time += '{:02}H'.format(hours)
    # minutes
    bigger_exists = bigger_exists or minutes
    if bigger_exists:
      time += '{:02}M'.format(minutes)
    # seconds
    if seconds.is_integer():
        seconds = '{:02}'.format(int(seconds))
    else:
        # 9 chars long w/leading 0, 6 digits after decimal
        seconds = '%09.6f' % seconds
    # remove trailing zeros
    seconds = seconds.rstrip('0')
    time += '{}S'.format(seconds)
    return u'P' + date + time

eg.

>>> iso8601(datetime.timedelta(0, 18, 179651))
'PT18.179651S'
+4
source

All Articles