赞
踩
from py2neo import Graph
graph = Graph("http://localhost:7474/db/data/my-test-databse.db", auth=("neo4j", "test123"))
这里my-test-databse.db
就是数据库的名字,这个名字可以改为自己想要指定的数据库名称
from py2neo import Graph
graph = Graph("http://localhost:7474/", auth=("neo4j", "test123"), name='my-test-databse.db')
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。