我想使用gremlin-server部署orientDB图形,并使用gremlin_python库将其与python连接。我下载了orientDB with gremlin server - zip社区版我可以通过运行来部署orientDB bin\server.bat,但是没有gremlin-server.bat(或.sh)可用于通过gremlin-server部署orientDB。我以前下载过tinkerpop gremlin-server,并尝试使用orientDB中可用的gremlin-server.yaml文件运行它。一些版本信息:OrientDB : orientdb-tp3-3.0.2Tinkerpop : apache-tinkerpop-gremlin-server-3.3.1Gremlin_python : gremlinpython==3.3.2版本控制可能是个问题。但是我也想知道如何设置它。我的能力够吗,我只需要更正版本?
2 回答
翻阅古今
TA贡献1780条经验 获得超5个赞
from gremlin_python.process.anonymous_traversal import traversal
from gremlin_python.driver.driver_remote_connection import DriverRemoteConnection
from gremlin_python.structure.graph import Graph
graph = Graph()
g = graph.traversal().withRemote(DriverRemoteConnection('ws://localhost:8182/gremlin','g', username = "root",password="root_password"))
为我工作
添加回答
举报
0/150
提交
取消