我尝试在JSON对象中解析日期字段:
{
"year": 1,
"name": "marko",
"date": "2015-10-1 3:00 PM GMT+1:00"
}
我尝试了类似的事情:
db_object.date = datetime.datetime.strptime(dictionary.get('date'), '%Y-%m-%d %I:%M ')
但我收到错误......
我知道%d应该是基于零的基础:
01
但我在JSON中获得1分。
答案 0 :(得分:3)
尝试使用dateutil
RouterTestingModule