6

How can I connect to Titan database from Python ?

What I understand is that Titan (Graph database) provides an interface (Blueprint) to Cassandra (Column Store) and bulb is a python interface to graph DB.

Now how can I start programming in python to connect with titan DB? Is there any good documentation/tutorial available ?

Sreejithc321
  • 1,940
  • 3
  • 20
  • 34

2 Answers2

2

You can use Rexster to expose a REST api and then you can use this api via Requests module (there are many other modules to do this task - though Requests is what I prefer)

Shagun Sodhani
  • 722
  • 4
  • 26
1

I have had success using Mogwai Python Library which is more actively maintained than Bulbs at this point.

Though I agree that this belongs on stack overflow.

closedloop
  • 131
  • 4