SPARQLWrapper

Software Screenshot:
SPARQLWrapper
Software Details:
Version: 1.5.2
Upload Date: 20 Feb 15
Distribution Type: Freeware
Downloads: 17

Rating: nan/5 (Total Votes: 0)

SPARQLWrapper is a SPARQL endpoint interface to Python. It is a wrapper around a SPARQL service. It helps in creating the query URI and, possibly, convert the result into a more manageable format.

The SPARQLWrapper package is licensed under W3C license.

Here you have an example of how to use the library in your python program:

from SPARQLWrapper import SPARQLWrapper, JSON

sparql = SPARQLWrapper("http://dbpedia.org/sparql")
sparql.setQuery("""
 PREFIX rdfs:
 SELECT ?label
 WHERE { rdfs:label ?label }
""")
sparql.setReturnFormat(JSON)
results = sparql.query().convert()

for result in results["results"]["bindings"]:
 print result["label"]["value"]

Requirements:

  • Python

Similar Software

pgmigrate2
pgmigrate2

14 Apr 15

Cache Monitor
Cache Monitor

17 Feb 15

DumpTruck
DumpTruck

20 Feb 15

Comments to SPARQLWrapper

Comments not found
Add Comment
Turn on images!