SPARQLWrapper

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

Rating: 4.0/5 (Total Votes: 1)

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

ceODBC
ceODBC

11 May 15

Qore MySQL Module
Qore MySQL Module

20 Feb 15

doppler
doppler

20 Feb 15

ADOdb Lite
ADOdb Lite

3 Jun 15

Comments to SPARQLWrapper

Comments not found
Add Comment
Turn on images!