如何在python 3.5中以毫秒而不是微秒的日期时间获取ISO8601字符串

时间:2018-10-23 08:12:39

标签: python datetime python-3.5 iso8601

给出以下日期时间:

d = datetime.datetime(2018, 10, 9, 8, 19, 16, 999578, tzinfo=dateutil.tz.tzoffset(None, 7200))

d.isoformat()产生字符串:

'2018-10-09T08:19:16.999578+02:00'

如何获取毫秒而不是微秒的字符串:

'2018-10-09T08:19:16.999+02:00'

strftime()在这里不起作用:%z返回0200,而不是02:00,并且只有%f可以获取微秒,没有占位符(毫秒)。

2 个答案:

答案 0 :(得分:1)

如果没有冒号的时区没问题,您可以使用

d = datetime.datetime(2018, 10, 9, 8, 19, 16, 999578, 
                      tzinfo=dateutil.tz.tzoffset(None, 7200))
s = d.strftime('%Y-%m-%dT%H:%M:%S.%f')[:-3] + d.strftime('%z')
# '2018-10-09T08:19:16.999+0200'

对于冒号,您需要分割时区并将其自己添加到其中。 %z也不为UTC产生Z


Python 3.6支持timespec='milliseconds',因此您应该对此进行填充:

try:
    datetime.datetime.now().isoformat(timespec='milliseconds')
    def milliseconds_timestamp(d):
        return d.isoformat(timespec='milliseconds')

except TypeError:
    def milliseconds_timestamp(d):
        z = d.strftime('%z')
        z = z[:3] + ':' + z[3:]
        return d.strftime('%Y-%m-%dT%H:%M:%S.%f')[:-3] + z

鉴于Python 3.6中的后者定义,

>>> milliseconds_timestamp(d) == d.isoformat(timespec='milliseconds')
True

使用

>>> milliseconds_timestamp(d)
'2018-10-09T08:19:16.999+02:00'

答案 1 :(得分:-1)

猜您可以使用strftime吗?

d.strftime("%Y-%m-%dT%H:%M:%S.") + str(d.microsecond//1000)