fix: dbpedia URL to use https instead of http (#2444) · RDFLib/rdflib@ef25896 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Commit ef25896

fix: dbpedia URL to use https instead of http (#2444)

The URL for the service keyword had the http address for the dbpedia endpoint, which no longer works. Changing it to https as that works.

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -140,7 +140,7 @@ The ``SERVICE`` keyword of SPARQL 1.1 can send a query to a remote SPARQL endpoi
140 140 """
141 141 SELECT ?s
142 142 WHERE {
143 - SERVICE http://dbpedia.org/sparql {
143 + SERVICE https://dbpedia.org/sparql {
144 144 ?s a ?o .
145 145 }
146 146 }