将Python与OrientDB和gremlin-server结合使用

我想使用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.2

Tinkerpop : apache-tinkerpop-gremlin-server-3.3.1

Gremlin_python : gremlinpython==3.3.2

版本控制可能是个问题。但是我也想知道如何设置它。我的能力够吗,我只需要更正版本?


眼眸繁星
浏览 243回答 2
2回答

翻阅古今

from gremlin_python.process.anonymous_traversal import traversalfrom gremlin_python.driver.driver_remote_connection import DriverRemoteConnectionfrom gremlin_python.structure.graph import Graphgraph = Graph()g = graph.traversal().withRemote(DriverRemoteConnection('ws://localhost:8182/gremlin','g', username = "root",password="root_password"))为我工作
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python