SPARQL and dbpedia: Getting Structured Data from Wikipedia
I always wondered if you could extract structured data from Wikipedia. Then I stumbled upon DBPedia and SPARQL. DBPedia stores Wikipedia data as a dataset, and it can be accessed using SPARQL. Let me demonstrate this with an example.
DBPedia has a SPARQL endpoint. And you can use SNORQL for exploring DBPedia. Let us execute the below SPARQL query in SNORQL and notice the resultset that is returned:
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 DISTINCT ?film_title ?star_name
where {?film_title rdf:type <http://dbpedia.org/ontology/Film> .
?film_title foaf:name ?film_name .
?film_title rdfs:comment ?film_abstract .
?film_title dbpedia-owl:starring ?star .
?star dbpprop:name ?star_name
}
LIMIT 5I get the results as below:

SPARQL results from DBPedia
As good place to learn SPARQL is http://answers.semanticweb.com/
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)





