Reputation: 117
I have installed Jena Fuseki on my computer and I after I create dataset I see in my file system that it appears under fuseki\run\configuration
folder, but I cannot find the triples that I upload to this dataset.
I want to process datasets with Python and then store them in jena fuseki, so I don't want to use the web app GUI that jena provides for uploading new triples. My question is how to accomplish this and where does Jena store uploaded triples?
Upvotes: 1
Views: 573
Reputation: 9472
If you don't want to use the web app UI, Fuseki offers a number of ways to get data into it:
soh
set of command line tools, in particular s-put
. These commands can be called from Python.It sounds like you are trying to upload data by directly accessing Fuseki's internal file storage. That's probably not a good idea. Access should go through the officially supported interfaces.
Upvotes: 1