将JSON文件导入InfluxDB

时间:2015-08-28 06:34:10

标签: python json indentation importerror influxdb

我想使用Python将一个JSON导入InfluxDB。我编写了将数据写入JSON的代码

以open('outfile.json','a')作为outfile:             json.dump(data,outfile,indent = 4,sort_keys = True)

然后当我将此JSON导入InfluxDB时, db.write_points(json_data) 会引发错误,如下所示:

引发ValueError(“无JSON对象可被解码”)

ValueError:无法解码JSON对象

我的JSON缩进是否存在问题?

如果是,那我该如何解决?

JSON的大小非常大(超过20mB)

0 个答案:

没有答案