Nicholas Car
Nicholas Car
# Summary of changes This file provides a single function `serialize_in_chunks()` which can serialize a Graph into a number of NT files with a maximum number of triples or maximum...
SPARQL 1.1's grammar [1] is implemented using a W3C variant of EBNF [2] while most Parsing Expression Grammar (PEG) tools out there for Python understand standard EBNF (or ISO ABNF),...
This code fails because `RDF` is not a valid response format for a SELECT query: ```python from SPARQLWrapper import SPARQLWrapper, RDF, JSON, XML sparql = SPARQLWrapper('http://ja.dbpedia.org/sparql') sparql.setQuery('select * where {...
`convert()` does different things for different formats, as per the code comments in [convert()](https://github.com/RDFLib/sparqlwrapper/blob/master/SPARQLWrapper/Wrapper.py#L958): * *in the case of :data:XML, a DOM top element is returned* * *in the case...
CKAN instances contain Organization information linked to from the datasets in RDF output like this: ``` a dcat:Dataset ; dct:title "Dataset Title" ; ... dct:publisher ; ... . a foaf:Organization...
The W3C's ["Content Negotiation by Profile" specification](https://w3c.github.io/dxwg/conneg-by-ap/) is now in the final stages of review. This spec has been developed by the same WG that's developed the DCAT-revised specification. This...
OWL-RL's original goal was to perform OWL-RL reasoning so "OWL-RL" has been an appropriate name. If other reasoning profiles are added, and RDFS is already available, then the name could/should...
EL & QL reasoning should use fewer rules than RL and thus this tookit should be able to implement them since it can already do RL. Having EL, QL &...
Perhaps for Challenges 34 & 36 (pp. 259, 270) in Semantic Web for the Working Ontologist