我有以下代码,它从我的Neo4j数据库中获取域列表,对IP执行查找,然后创建一个关系(如果尚不存在)。它工作正常,直到创建关系的最后几行代码。我收到以下错误。我已经确认这些列表有两个项目 - 域名和IP,所以我不确定为什么会产生错误:
File "C:\Python26\beta7_whois4j_monitor_debug.py", line 63, in createrels
rels1 = graph_db.get_or_create_relationships((whoisnodes[0], "links", whoisnodes[1]))
IndexError: list index out of range
以下是代码:
whoisindex = graph_db.get_or_create_index(neo4j.Node, "whoisID")
domains = whoisindex.query("whoisID:*com")
for i in domains:
list1 = []
value1 = "{0}".format(i['whoisID'])
try:
e = socket.gethostbyname(value1)
except socket.gaierror:
e = 'exclude from list'
if e != 'exclude from list':
list1.append(value1)
list1.append(e)
for word in list1:
whoisnodes = []
whoisnodes.append(whoisindex.get_or_create("whoisID", word, "whoisID":word}))
rels1 = graph_db.get_or_create_relationships(
(whoisnodes[0], "links", whoisnodes[1]))
print "{0}".format(i['whoisID'])
答案 0 :(得分:0)
我对你在这里想做什么感到有点困惑。对于循环for word in list
的每次迭代,您都要将whoisnodes重置为新列表,然后在下面的行中向其添加单个项目。这意味着,当您致电get_or_create_relationships
时,列表中只能存在一个项,因此当您尝试访问IndexError
时,whoisnodes[1]
就会出现。< / p>
你的意思是whoisnodes = []
在循环之外吗?
顺便说一下,还有一个拼写错误(缺少大括号):
whoisindex.get_or_create("whoisID", word, "whoisID":word})
应为:
whoisindex.get_or_create("whoisID", word, {"whoisID":word})
答案 1 :(得分:0)
我的第二次尝试虽然现在它返回了一个JSON错误:
whoisindex = graph_db.get_or_create_index(neo4j.Node, "whoisID")
domains = whoisindex.query("whoisID:*com")
for i in domains:
list1 = []
value1 = "{0}".format(i['whoisID'])
try:
e = socket.gethostbyname(value1)
except socket.gaierror:
e = 'exclude from list'
if e != 'exclude from list':
list1.append(value1)
list1.append(e)
list1.append(whoisindex.get_or_create("whoisID", i, {"whoisID":i}))
rels1 = graph_db.get_or_create_relationships(
(list1[0], "links", list1[1]))
print "{0}".format(i['whoisID'])