Lab: SPARQL Programming: Difference between revisions

From info216
No edit summary
No edit summary
Line 1: Line 1:
==Topics==
==Topics==
SPARQL programming in python with SPARQLWrapper and Blazegraph, or alternatively RDFlib.
SPARQL programming in python with SPARQLWrapper and Blazegraph, or alternatively RDFlib.
These tasks are about programming SPARQL queries and inserts in a python program. Last week we added triples manually from the web interface.However, sometimes we would rather want to program the insertion or updates of triples for our graphs/databases.


==Tasks==
==Tasks==
After the presentations you can start on the tasks for next week.
These tasks are about programming SPARQL queries and inserts in a python program. Last week we added triples manually from the web interface.
However, sometimes we would rather want to program the insertion or updates of triples for our graphs/databases.
* Redo all the SPARQL queries and updates from [https://wiki.uib.no/info216/index.php/Lab:_SPARQL Lab 4], this time writing a Python program.  
* Redo all the SPARQL queries and updates from [https://wiki.uib.no/info216/index.php/Lab:_SPARQL Lab 4], this time writing a Python program.  



Revision as of 10:48, 14 February 2020

Topics

SPARQL programming in python with SPARQLWrapper and Blazegraph, or alternatively RDFlib. These tasks are about programming SPARQL queries and inserts in a python program. Last week we added triples manually from the web interface.However, sometimes we would rather want to program the insertion or updates of triples for our graphs/databases.

Tasks

  • Redo all the SPARQL queries and updates from Lab 4, this time writing a Python program.


With Blazegraph

The most important part is that we need to import a SPARQLWrapper in order to connect to the SPARQL endpoint of Blazegraph. When it comes to how to do some queries I recommend scrolling down on this page for help: https://github.com/RDFLib/sparqlwrapper

Remember, before you can program with Blazegraph you have to make sure its running like we did in Lab 4. Now you will be able to program queries and updates.

# How to establish connection to Blazegraph endpoint. 

from SPARQLWrapper import SPARQLWrapper, JSON

sparql = SPARQLWrapper("("http://localhost:9999/bigdata/sparql")")


Without Blazegraph

If you have not been able to run Blazegraph yet, you can instead program SPARQL queries directly with RDFlib.

For help, look at the link below:

Querying with Sparql

Useful Readings