Difference between revisions of "Lab: Group Project Presentations 1"
Line 14: | Line 14: | ||
After the presentations you can start on the tasks for next week. | 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. | 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 databases. | |
Revision as of 00:28, 14 February 2020
Contents
Lab 5: Group Project Presentations
Topics
- Group Presentations.
- SPARQL programming in python with Blazegraph.
Presentations
Today you will be presenting your ideas for the group project in the lab. Andreas Opdahl will be present to give you further feedback and ideas.
Tasks (if we have additional time)
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 databases.
- Redo all the steps from Lab 4, this time writing a Python/RDFlib program.
With Blazegraph
You can look at the python example page to see how to connect to your blazegraph database in Python and perform some basic queries.
from SPARQLWrapper import SPARQLWrapper, JSON sparql = SPARQLWrapper("http://84.211.55.37:9999/blazegraph/sparql")