从ISO格式获取日期

将日期从ISO-8601格式转换为日期对象。

  • 使用datetime.datetime.fromisoformat()将给定的ISO-8601日期转换为datetime.datetime对象。
from datetime import datetime

def from_iso_date(d):
  return datetime.fromisoformat(d)

from_iso_date('2020-10-28T12:30:59.000000') # 2020-10-28 12:30:59