parent
a67f0a75d7
commit
537072d2c2
@ -0,0 +1,15 @@
|
||||
# pip install neo4j
|
||||
from neo4j import GraphDatabase
|
||||
|
||||
# 连接配置
|
||||
neo4j_url = "bolt://localhost:7687" # 建议使用bolt协议
|
||||
neo4j_user = "neo4j"
|
||||
neo4j_pwd = "your_password"
|
||||
|
||||
# 创建驱动
|
||||
with GraphDatabase.driver(neo4j_url, auth=(neo4j_user, neo4j_pwd)) as driver:
|
||||
# 验证连接
|
||||
driver.verify_connectivity()
|
||||
print("成功连接到Neo4j数据库")
|
||||
neo4j_user = "neo4j"
|
||||
neo4j_pwd = "neo4j"
|
Loading…
Reference in new issue