query.py 470 B

1234567891011121314151617
  1. from flask import current_app, g
  2. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  3. from lakesuperior.dictionaries.namespaces import ns_mgr as nsm
  4. class QueryEngine:
  5. '''
  6. Handle both simple term-based and full-fledged SPARQL queries.
  7. '''
  8. def sparql_query(self, qry):
  9. '''
  10. Send a SPARQL query to the triplestore.
  11. The returned value may be different.
  12. '''
  13. return current_app.rdfly.raw_query(qry)