Quickstart¶
Installation¶
pip install sparql11
Usage¶
It’s really simple to expose your graph via a SPARQL endpoint:
import sparql11
from rdflib import Graph
g = Graph()
# start a new SPARQL endpoint for g at localhost:3030
endpoint = sparql11.endpoint(g)
Documentation on how to perform queries follows soon.