I start my Gremlin NEO4J like this
./gremlin-server.sh conf/gremlin-server-neo4j.yaml
I have installed OrientDB Community edition and it seems to be working file via IP:2480/studio/index.htm
Now I am trying to connect my Gremlin Server to Orient DB but I dont find any way to achieve it
Python code to connect with Gremlin Server
from gremlin_python.driver import client as driver
# Constants for connections to gremlin
GREMLIN_VAR = 'g'
GREMLIN_URL = 'ws://localhost:8182/gremlin'
client = driver.Client(GREMLIN_URL, GREMLIN_VAR)
What I found but didnt help
- V3 doc but they are using Java and not Python
- orientdb-server-config.xml but I need a yaml file for python
- gremlin-server.sh -i org.apache.tinkerpop orientdb-gremlin 3.3.1 threw an error '[unresolved dependency: org.apache.tinkerpop#orientdb-gremlin;3.3.1: not found]'
- 'orientdb-community-importers-2.2.31/bin' has a file called 'gremlin.sh' it executed but I am unable to do something like g = graph.traversal()
- Tried "./gremlin-server.sh -i com.orientechnologies orientdb-gremlin 2.2.31" it installed something but I dont know how to go ahead.