I am new to this and I am trying to get Titan to work with Python. I hit my head about it for a day and a half and canβt go anywhere. I tried light bulbs and rexpro-python, but nothing works.
The following code is provided in rexpro-python :
from rexpro import RexProConnection conn = RexProConnection('localhost', 8184, 'graph')
will freeze and the server will display the following message (for versions titan 0.3.2, 0.3.1 and 0.2.1)
13/09/18 16:59:27 WARN filter.RexProMessageFilter: unsupported rexpro version: 1
In Light Bulb :
from bulbs.config import Config, DEBUG from bulbs.rexster import Graph config = Config('http://localhost:8182/graphs/graph') g = Graph(config)
It produces the following error:
SystemError: ({'status': '500', 'transfer-encoding': 'chunked', 'server': 'grizzly/2.2.16', 'connection': 'close', 'date': 'Wed, 18 Sep 2013 21:06:27 GMT', 'access-control-allow-origin': '*', 'content-type': 'application/json'}, '{"message":"","error":"javax.script.ScriptException: groovy.lang.MissingMethodException: No signature of method: groovy.lang.MissingMethodException.idx() is applicable for argument types: () values: []\\nPossible solutions: is(java.lang.Object), any(), find(), any(groovy.lang.Closure), with(groovy.lang.Closure), _(groovy.lang.Closure)","api":{"description":"evaluate an ad-hoc Gremlin script for a graph.","parameters":{"rexster.returnKeys":"an array of element property keys to return (default is to return all element properties)","rexster.showTypes":"displays the properties of the elements with their native data type (default is false)","load":"a list of \'stored procedures\' to execute prior to the \'script\' (if \'script\' is not specified then the last script in this argument will return the values","rexster.offset.end":"end index for a paged set of data to be returned","rexster.offset.start":"start index for a paged set of data to be returned","params":"a map of parameters to bind to the script engine","language":"the gremlin language flavor to use (default to groovy)","script":"the Gremlin script to be evaluated"}},"success":false}')
with a similar exception on the Titan server. Has anyone got this to work?