完善整体效果

This commit is contained in:
2025-06-24 14:05:56 +08:00
parent 705cc969d9
commit 18dfc705b4
5 changed files with 88 additions and 41 deletions
+3 -3
View File
@@ -24,9 +24,9 @@ class ProjectTookiItNeo4j(ProjectTookiIt):
user (str): 用户名
password (str): 密码
"""
uri = config.get("uri")
user = config.get("username")
password = config.get("password")
uri = config.neo4j_conf.get("uri")
user = config.neo4j_conf.get("username")
password = config.neo4j_conf.get("password")
super().__init__()
self.driver = GraphDatabase.driver(uri, auth=(user, password))