Last active
September 13, 2018 12:32
-
-
Save ettorerizza/2816a0ee98fd93bde0e7feaecb06ca98 to your computer and use it in GitHub Desktop.
dbpedia_wikidata_federated_sparql_query
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://linkeddata.uriburner.com/sparql") | |
| sparql.setQuery(""" | |
| PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | |
| PREFIX foaf: <http://xmlns.com/foaf/0.1/> | |
| PREFIX owl: <http://www.w3.org/2002/07/owl#> | |
| PREFIX wd: <http://www.wikidata.org/entity/> | |
| PREFIX wdt: <http://www.wikidata.org/prop/direct/> | |
| PREFIX wikibase: <http://wikiba.se/ontology#> | |
| PREFIX p: <http://www.wikidata.org/prop/> | |
| PREFIX ps: <http://www.wikidata.org/prop/statement/> | |
| PREFIX pq: <http://www.wikidata.org/prop/qualifier/> | |
| PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
| PREFIX bd: <http://www.bigdata.com/rdf#> | |
| PREFIX dct: <http://purl.org/dc/terms/> | |
| SELECT DISTINCT ?dbpediaID ?item as ?wikidataID | |
| xsd:string(?label) as ?name | |
| ?description ?subjectText ?label | |
| ?image ?picture | |
| WHERE { | |
| SERVICE <http://query.wikidata.org/sparql> | |
| { | |
| SELECT DISTINCT ?item ?numero (SAMPLE(?pic) AS ?picture) | |
| WHERE { | |
| ?item p:P528 ?catalogStatement . | |
| ?catalogStatement ps:P528 ?numero . | |
| ?catalogStatement pq:P972 wd:Q14530 . | |
| OPTIONAL {?item wdt:P18 ?pic } . | |
| SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } | |
| } | |
| GROUP BY ?item ?numero ORDER BY ?numero | |
| } | |
| SERVICE <http://dbpedia.org/sparql> | |
| { | |
| SELECT ?dbpediaID ?label ?image ?description ?subjectText | |
| FROM <http://dbpedia.org> | |
| WHERE { ?dbpediaID owl:sameAs ?item ; | |
| rdfs:label ?label ; | |
| foaf:depiction ?image; | |
| rdfs:comment ?description ; | |
| dct:subject [ rdfs:label ?subjectText ] . | |
| FILTER (LANG(?label) = "en") | |
| FILTER (LANG(?description) = "en") | |
| } | |
| } | |
| }""") | |
| sparql.setReturnFormat(JSON) | |
| results = sparql.query().convert() | |
| for result in results["results"]["bindings"]: | |
| print(result) | |
| #print(result["label"]["value"]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment