How get DBpedia data in a specific language?
Asked Answered
C

1

12

i tried this request http://lookup.dbpedia.org/api/search.asmx/KeywordSearch?QueryClass=film&QueryString=transformers&MaxHits=1

but if i want to retrieve info in italian language?

it there another service (similar this) that can?

Consequence answered 19/7, 2011 at 12:20 Comment(0)
P
14

You could use dbpedia SPARQL endpoint to run query. For example:

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?film ?description ?film_name WHERE {
    ?film rdf:type <http://dbpedia.org/ontology/Film>.
    ?film foaf:name ?film_name.
    ?film rdfs:comment ?description .
    FILTER (LANG(?description)='it' && ?film_name="Transformers"@en)
}
Pasteup answered 24/7, 2011 at 19:32 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.