其他分享
首页 > 其他分享> > json文件修改-解决:TypeError: Object of type Series is not JSON serializable

json文件修改-解决:TypeError: Object of type Series is not JSON serializable

作者:互联网

问题描述

在导入Python json包,调用json.dump/dumps函数时,可能会遇到TypeError: Object of type Series is not JSON serializable错误,也就是无法序列化某些对象格式。

**

解决办法

**
自定义序列化方法

import time
import numpy as np
class MyEncoder(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()

然后在调用json.dump/dumps时,指定使用自定义序列化方法

file_out=open('test5.geojson', "w")
file_out.write(json.dumps(dic, cls=MyEncoder))

标签:isinstance,TypeError,obj,Series,Object,json,np,return,序列化
来源: https://blog.csdn.net/qq_49081198/article/details/122024031