Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
7answers
2k views

The State of RDF in Ruby

I'm wondering about the current support there is in Ruby for semantic web technologies. Is there good RDF options? It seems that the last surveys done were circa 2007 ( ...
3
votes
1answer
102 views

Rewrite SPARQL DESCRIBE query as CONSTRUCT

For some reason I can't issue DESCRIBE queries using Redland ( librdf.org ), is it possible to rewrite DESCRIBE as a CONSTRUCT QUERY for a given URI? DESCRIBE <urn:my-uri> I was thinking ...
3
votes
1answer
184 views

Storage transactions in Redland's Python bindings?

I've currently skimming through the Python-bindings for Redland and haven't found a clean way to do transactions on the storage engine via it. I found some model-transactions within the low-level ...
2
votes
4answers
385 views

SPARQL query on the remote remote endpoint RDFLib / Redland

I'm trying to query remote endpoints and get get owl:sameAs mappings, I've tried both RDFLib and Redland but neither worked for me, probably I'm not dealing with namespaces correctly. Here is my ...
1
vote
1answer
60 views

Problem with queries, Redland and python bindings

I'm developing a semantic reverse proxy that extracts metadata. I use Django, dj-revproxy and RDFLib (and for the storage I use MySQL), but i'm switching to redland's framework with the python ...
0
votes
1answer
51 views

Getting statements from redland hash storage

Is librdf_model_add writing the statements into the hash-storage? I am having problem to run a sparql query to retrieve them. The db files are probably populated as their file size keep increasing, ...
0
votes
1answer
133 views

Example of Python + Redland for RDF Storage and Retrieval

Would someone please point to an example of using Python to store RDF data using Redland / RDF, and later to retrieve the data. I see there is a lot of Redland documentation out there, and I'm sure ...
0
votes
2answers
52 views

Redland python bindings.Unexpected print ot triples

I have the below code in python: import RDF parser = RDF.Parser() model=RDF.Model() stream=parser.parse_into_model(model,"file:./zoo/zoo.rdf") list = [] for triple in model: print ...
0
votes
0answers
225 views

Why cygwin cannot find python libraries while installing python redland-binding library?

I tried to install the latest versions of redland library under cygwin : raptor2-2.0.0 rasqal-0.9.24 redland-1.0.13 redland-bindings-1.0.13.1 I am interested for the python bindings. I've ...