I'm new to python. I tried to create RDF form using triple store.
store=TripleSto re()
But I'm getting this error
File "<pyshell#3 >", line 1, in <module>
store=TripleSto re()
File "C:\Users\Admin istrator\Deskto p\TripleStore.p y", line 13, in __init__
super(TripleSto re, self).__init__( backend=backend )
File "build\bdist.wi n32\egg\rdflib\ Graph.py", line 1008, in __init__
super(BackwardC ompatGraph, self).__init__( store=backend)
File "build\bdist.wi n32\egg\rdflib\ Graph.py", line 815, in __init__
assert self.store.cont ext_aware, ("ConjunctiveGr aph must be backed by"
AssertionError: ConjunctiveGrap h must be backed by a context aware store.
Please Help
store=TripleSto re()
But I'm getting this error
File "<pyshell#3 >", line 1, in <module>
store=TripleSto re()
File "C:\Users\Admin istrator\Deskto p\TripleStore.p y", line 13, in __init__
super(TripleSto re, self).__init__( backend=backend )
File "build\bdist.wi n32\egg\rdflib\ Graph.py", line 1008, in __init__
super(BackwardC ompatGraph, self).__init__( store=backend)
File "build\bdist.wi n32\egg\rdflib\ Graph.py", line 815, in __init__
assert self.store.cont ext_aware, ("ConjunctiveGr aph must be backed by"
AssertionError: ConjunctiveGrap h must be backed by a context aware store.
Please Help
Comment