I try to retrieve data from dbpedia but I get error everytime i run the code.
The code in Python is:
#!/usr/bin/python
# -*- coding: utf-8 -*-
from SPARQLWrapper import SPARQLWrapper, JSON
sparql = SPARQLWrapper("http://dbpedia.org/sparql")
sparql.setQuery("""
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?subject
WHERE { <http://dbpedia.org/resource/Musée_du_Louvre> dcterms:subject ?subject }
""")
# JSON example
print '\n\n*** JSON Example'
sparql.setReturnFormat(JSON)
results = sparql.query().convert()
for result in results["results"]["bindings"]:
print result["subject"]["value"]
I believe that I must use a different char for "é" in "Musée_du_Louvre"but I cant figure which. Thx!
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 122: ordinal not in range(128), raised inSPARQLWrapper/Wrapper.py:299and caused byresults = sparql.query().convert()on line 16 of the snippet. @Manom18x please edit your question accordingly. – Lukas Graf Sep 2 '12 at 17:00