在neo4j上运行cypher query后,我可以将结果导出/下载为json或csv格式。然而,当我试图将其导入Python时,我发现了错误,因为JSON和csv格式不正确。有人能帮忙导入json吗?谢谢你。
with open(file_path, "r") as file:
data = json.load(file)
---------------------------------------------------------------------------
JSONDecodeError Traceback (most recent call last)
Cell In[28], line 2
1 with open(file_path, "r") as file:
----> 2 data = json.load(file)
1条答案
按热度按时间p4rjhz4m1#
从neo4j浏览器导出的文件使用不同的编码。请使用“utf-8-sig”作为编码。
样本输出:
下面是我的Notebook和Python版本: