Posts Tagged ‘query’

Dynamic SPARQL queries and Datatypes

After some headaches I’ve found how to write dynamic SPARQL queries by passing parameters. For example, to query graph about resources collected last hour this code could be a first approach:
#!/usr/bin/env python
# Dynamic query (example code)

from datetime import datetime
import rdflib
from namespaces import XSD

def last_day():
“”" get date “”"
now [...]

Querying remote ontologies from integrated SPARQL editor

Checking others parts of the Vazaar GUI, I’ve realized that I can query remote ontologies and vocabularies with a simple SPARQL sentence. In the screenshot you can see how I query for the comments of all NAO entities.
Just for the record, it would be nice to save user queries and integrate them within Vazaar. [...]