I created different graphs using RDFLib in python which share the same Bnodes. Each BNode has a specific name. I am trying now to store all the graphs in one graph using 4store and http4store. The problem I am facing is that after adding a graph to 4store database the Bnode changed and are assigned different names which is quite a problem since that all graphs share the same Bnodes. So each time I receive a new graph I store it as follow:
self.insert(descriptor,"reference",format="xml")
reference is the name of the graph that i created using: 4s-httpd -p 8000 reference
and descriptor is the graph to be added.
#the insert function is as follow
def insert(self, content, graph, format="xml"):
r = self.store.append_graph(uri=graph, content=content, content_type=format)
if not (r.status == 201 or r.status == 200):
raise TripleStoreInsertException(content)
and then using a SPARQL query I got back the tripled stored which contains different Bnodes names. I tried also to parse each new graph with the older graph to create one single graph using RDFLib parser before storing it but i got the same results where the BNode changed.
My question is: how can i store the graphs with the exact same Bnodes and if it is not possible is there an alternative in RDFLib ?
Also due to the lake of documentation regarding 4store what is the best RDF Triplestores that are python-friendly?