当前位置:主页 > 软件编程 > Python代码 >

让python json encode datetime类型

时间:2020-10-20 13:12:39 | 栏目:Python代码 | 点击:

实现代码如下:
复制代码 代码如下:

import json
from datetime import date, datetime


def __default(obj):
if isinstance(obj, datetime):
return obj.strftime('%Y-%m-%dT%H:%M:%S')
elif isinstance(obj, date):
return obj.strftime('%Y-%m-%d')
else:
raise TypeError('%r is not JSON serializable' % obj)

print json.dumps({'d': datetime.now(), 'today': date.today(), 'x': 111},
default=__default)

您可能感兴趣的文章:

相关文章