I have installed rdflib in python, it is in version 3.2
when i do this:
import rdflib
print rdflib.__ version__
3.2.0
from rdflib.TripleStore import TripleStore
Traceback (most recent call last):
File “”, line 1, in
ImportError: No module named TripleStore
Somebody help me with this please. 🙂
TripleStorewas removed in rdflib 3.x and even in 2.4 it was deprecated in favor ofGraph.Use
Graphin combination withStoreto manage/persist your triples.TripleStorewas a subclass ofGraphso it should be almost a drop-in replacement.