赞
踩
在数据写入neo4j之前需要做的事情是,要有已经提取出来的三元组数据可以使用,方便来写入到neo4j数据库。
在此处我已经提取出了一些数据存储到了mongodb数据库里面了。
导入工具包
from pymongo import MongoClient
from neo4j.v1 import GraphDatabase, basic_auth, kerberos_auth, custom_auth, TRUST_ALL_CERTIFICATES
链接neo4j的驱动
driver = GraphDatabase.driver("*********", auth=basic_auth(“neo4j”,“neo4j”), trust=TRUST_ALL_CERTIFICATES)
session = driver.session()
链接mongodb读出里面的三元组和用来提取三元组的原文信息。
connect = MongoClient(“", 27017)
db = connect['’]
db.authenticate("”, "")
collect = db.
collect1 = db.****
def nodes_relation():
i = 0
for item in collect.find(no_cursor_timeout=True)[i:]:
try:
i += 1
print(i)
拿出用来提取三元组的原文的其他信息
title = item[“name”]
u
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。