当前位置:   article > 正文

python导出json文件报错TypeError: Object of type Timestamp is not JSON serializable

typeerror: object of type timestamp is not json serializable
  1. 运行下面代码
import json
import datetime
class NpEncoder(json.JSONEncoder):
    def default(self, obj):
        if isinstance(obj, np.integer):
            return int(obj)
        elif isinstance(obj, np.floating):
            return float(obj)
        elif isinstance(obj, np.ndarray):
            return obj.tolist()
        elif isinstance(obj, datetime.datetime):
        	return obj.strftime('%Y-%m-%dT%H:%M:%S')
        else:
            return super(NpEncoder, self).default(obj)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  1. 然后使用dumps方法(我们可以直接把dict直接序列化为json对象)加上 cls=NpEncoder,data就可以正常序列化了, 并导出 json 文件。
with open("write_json.json", "w", encoding='utf-8') as f:#读的时候也需要用utf-8
    # json.dump(dict_, f)  # 写为一行
    json.dump(json_dict_2, f, indent=2, sort_keys=True, ensure_ascii=False, cls=NpEncoder)  # 写为多行
  • 1
  • 2
  • 3

参考链接
链接

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/670704
推荐阅读
相关标签
  

闽ICP备14008679号