Created
September 12, 2012 08:28
-
-
Save wikier/3705219 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from SPARQLWrapper import SPARQLWrapper, JSON | |
sparql = SPARQLWrapper("http://dbpedia.org/sparql") | |
sparql.setQuery(""" | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
SELECT ?label | |
WHERE { <http://dbpedia.org/resource/Asturias> rdfs:label ?label } | |
""") | |
sparql.setReturnFormat(JSON) | |
results = sparql.query().convert() | |
for k, v in results["results"]["bindings"][0].items(): | |
print("%s : %s" % (k,v)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment