Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8477417
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T18:27:47+00:00 2026-06-10T18:27:47+00:00

I try to retrieve data from dbpedia but I get error every time i

  • 0

I try to retrieve data from dbpedia but I get error every time 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!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T18:27:49+00:00Added an answer on June 10, 2026 at 6:27 pm

    The first problem is that SPARQLWrapper seems to expect its query to be in unicode, but you’re passing it an utf-8 encoded string – that’s why you get a UnicodeDecoreError. Instead you should pass it a unicode object, either by decoding your utf-8 string

    unicode_obj = some_utf8_string.decode('utf-8')
    

    or by using an unicode literal:

    unicode_obj = u'Hello World'
    

    Passing it a unicode object avoids that UnicodeDecodeError, but doesn’t yield any results. So it looks the dbpedia API expects URLs containing non-ASCII characters to be percent-encoded. Therefore you need to encode the URL beforehand using urllib.quote_plus:

    from urllib import quote_plus
    encoded_url = quote_plus(url, safe='/:')
    

    With these two changes your code could look like this:

    #!/usr/bin/python
    # -*- coding: utf-8 -*-
    
    from SPARQLWrapper import SPARQLWrapper, JSON
    from urllib import quote_plus
    
    url = 'http://dbpedia.org/resource/Musée_du_Louvre'
    encoded_url = quote_plus(url, safe='/:')
    
    sparql = SPARQLWrapper("http://dbpedia.org/sparql")
    
    query = u"""
        PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
        SELECT ?subject
        WHERE { <%s> dcterms:subject ?subject }
    """ % encoded_url
    
    sparql.setQuery(query)
    
    # JSON example
    print '\n\n*** JSON Example'
    sparql.setReturnFormat(JSON)
    results = sparql.query().convert()
    for result in results["results"]["bindings"]:
        print result["subject"]["value"]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I get a Data type mismatch criteria expression error when i try to retrieve
I have code to retrieve data from a database into a form but it
I wrote the below code to retrieve data from the data base, in that
I try to retrieve HTML data from my database and display them in a
Hello I have the following code to retrieve data from my db using nhibernate
I'm practicing form validation with JavaScript but when I try to retrieve the data
I retrieve data from Oracle database and populate a gridview. Next, I try to
I am trying to retrieve data from this editor try to inspect the content
I have this code to retrieve data from file then make some treatment, and
I use the following code to retrieve the data from MySql database. GContnStr is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.