我是靠谱客的博主 爱听歌西装,最近开发中收集的这篇文章主要介绍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))
最后
以上就是爱听歌西装为你收集整理的json文件修改-解决:TypeError: Object of type Series is not JSON serializable的全部内容,希望文章能够帮你解决json文件修改-解决:TypeError: Object of type Series is not JSON serializable所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复