我正在使用Python访问neo4j并创建节点.
在创建节点之前,我想检查它是否存在.我运行这个查询:
"query" : "match (PPnode:Node) return PPnode"
并使用请求库的方法:
r.text
我得到一个字符串,带有我的POST请求的响应.
我的问题是,是否有一种更“优雅”的方法来检查是否存在使用python和rest api的特定名称的现有节点.
这是我的代码:
import requests
import json
import csv
headers = {'content-type': 'application/json'}
url = "http://localhost:7474/db/data/cypher"
fparts = open('FOC.csv')
csv_pseudo = csv.reader(fparts)
for row in csv_pseudo:
# query to check if node exists
checkNode = {"query" : "match (PPnode:Node) return PPnode"}
mkr =requests.post(url, data=json.dumps(checkNode), headers=headers)
谢谢
季米特里斯
解决方法:
我想你可能比你需要的更努力.有一个名为py2neo的库,可以更简单地完成您想做的事情.如果你使用它,你可以得到实际的对象而不是原始的JSON,这可能更容易处理:
从the documentation on how to run Cypher queries开始:
from py2neo import Graph
graph = Graph("http://nifty-site:1138/db/data/")
results = graph.cypher.execute("match (PPnode:Node) return PPnode")
for r in results:
# get the node you return in your query
ppNode = r[0]
# get the properties of your node
props = ppNode.get_properties()
# Do nifty stuff with properties, not JSON.