Hi I have been trying to run the following script and have not succeeded with 
loading the URI successfully. Does anyone know the issue + solution to this 
problem? This is the following script:


import rdflib
g = rdflib.Graph()
g.load("http://169.36.179.223:10035/repositories/cso_core_collector-20190124";)

qres = g.query(
    """SELECT ?class
    WHERE {
    ?s rdf:type ?class
    } GROUP BY ?class"""
)

for row in qres:
    print(row)

-- 
http://github.com/RDFLib
--- 
You received this message because you are subscribed to the Google Groups 
"rdflib-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rdflib-dev+unsubscr...@googlegroups.com.
To post to this group, send email to rdflib-dev@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rdflib-dev/1484929c-1cd1-423b-9fcd-c04f7928f198%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to