如何使用python将unix时间转换为Google API日期时间格式?

How to convert unix time to Google API datetime format using python?

我想使用python将像1522922431 (Unix time)这样的UNIX时间转换为Google API 2018-04-05T10:00:31+00:00 (RFC 3339)使用的RFC 3339格式。 是否可以使用任何python包或python模块?


使用datetimepytz

1
2
3
4
5
6
7
import pytz
from datetime import datetime

utc = pytz.utc
a_date = datetime.utcfromtimestamp(1522922431)
utc_date = utc.localize(a_date).isoformat()
'2018-04-05T10:00:31+00:00'