Lab Solutions: Difference between revisions

From info216
No edit summary
 
(90 intermediate revisions by 6 users not shown)
Line 1: Line 1:
This page will be updated with Python examples related to the lectures and labs. We will add more examples after each lab has ended. The first examples will use Python's RDFlib. We will introduce other relevant libraries later.
Here we will present suggested solutions after each lab. ''The page will be updated as the course progresses''
 
=[[/info216.wiki.uib.no/Lab: Getting started with VSCode, Python and RDFlib|1 Lab: Getting started with VSCode, Python and RDFlib]] =
 
==Getting started==
 
 
===Printing the triples of the Graph in a readable way===
<syntaxhighlight>
<syntaxhighlight>
# The turtle format has the purpose of being more readable for humans.
print(g.serialize(format="turtle"))
</syntaxhighlight>


===Coding Tasks Lab 1===
from rdflib import Graph, Namespace
<syntaxhighlight>
from rdflib import Graph, Namespace, URIRef, BNode, Literal
from rdflib.namespace import RDF, FOAF, XSD


g = Graph()
ex = Namespace('http://example.org/')
ex = Namespace("http://example.org/")
 
g.add((ex.Cade, ex.married, ex.Mary))
g.add((ex.France, ex.capital, ex.Paris))
g.add((ex.Cade, ex.age, Literal("27", datatype=XSD.integer)))
g.add((ex.Mary, ex.age, Literal("26", datatype=XSD.integer)))
g.add((ex.Mary, ex.interest, ex.Hiking))
g.add((ex.Mary, ex.interest, ex.Chocolate))
g.add((ex.Mary, ex.interest, ex.Biology))
g.add((ex.Mary, RDF.type, ex.Student))
g.add((ex.Paris, RDF.type, ex.City))
g.add((ex.Paris, ex.locatedIn, ex.France))
g.add((ex.Cade, ex.characteristic, ex.Kind))
g.add((ex.Mary, ex.characteristic, ex.Kind))
g.add((ex.Mary, RDF.type, FOAF.Person))
g.add((ex.Cade, RDF.type, FOAF.Person))
 
# OR


g = Graph()
g = Graph()


ex = Namespace('http://example.org/')
g.bind("ex", ex)


g.add((ex.Cade, FOAF.name, Literal("Cade", datatype=XSD.string)))
# The Mueller Investigation was lead by Robert Mueller
g.add((ex.Mary, FOAF.name, Literal("Mary", datatype=XSD.string)))
g.add((ex.MuellerInvestigation, ex.leadBy, ex.RobertMueller))
g.add((ex.Cade, RDF.type, FOAF.Person))
g.add((ex.Mary, RDF.type, FOAF.Person))
g.add((ex.Mary, RDF.type, ex.Student))
g.add((ex.Cade, ex.Married, ex.Mary))
g.add((ex.Cade, FOAF.age, Literal('27', datatype=XSD.int)))
g.add((ex.Mary, FOAF.age, Literal('26', datatype=XSD.int)))
g.add((ex.Paris, RDF.type, ex.City))
g.add((ex.France, ex.Capital, ex.Paris))
g.add((ex.Mary, FOAF.interest, ex.hiking))
g.add((ex.Mary, FOAF.interest, ex.Chocolate))
g.add((ex.Mary, FOAF.interest, ex.biology))
g.add((ex.France, ex.City, ex.Paris))
g.add((ex.Mary, ex.characteristic, ex.kind))
g.add((ex.Cade, ex.characteristic, ex.kind))
g.add((ex.France, RDF.type, ex.Country))


# It involved Paul Manafort, Rick Gates, George Papadopoulos, Michael Flynn, Michael Cohen, and Roger Stone.
g.add((ex.MuellerInvestigation, ex.involved, ex.PaulManafort))
g.add((ex.MuellerInvestigation, ex.involved, ex.RickGates))
g.add((ex.MuellerInvestigation, ex.involved, ex.GeorgePapadopoulos))
g.add((ex.MuellerInvestigation, ex.involved, ex.MichaelFlynn))
g.add((ex.MuellerInvestigation, ex.involved, ex.MichaelCohen))
g.add((ex.MuellerInvestigation, ex.involved, ex.RogerStone))


print(g.serialize(format="turtle"))
# Paul Manafort was business partner of Rick Gates
g.add((ex.PaulManafort, ex.businessPartner, ex.RickGates))


</syntaxhighlight>
# He was campaign chairman for Donald Trump
g.add((ex.PaulManafort, ex.campaignChairman, ex.DonaldTrump))


==Basic RDF programming==
# He was charged with money laundering, tax evasion, and foreign lobbying.
g.add((ex.PaulManafort, ex.chargedWith, ex.MoneyLaundering))
g.add((ex.PaulManafort, ex.chargedWith, ex.TaxEvasion))
g.add((ex.PaulManafort, ex.chargedWith, ex.ForeignLobbying))


===Different ways to create an address===
# He was convicted for bank and tax fraud.
g.add((ex.PaulManafort, ex.convictedOf, ex.BankFraud))
g.add((ex.PaulManafort, ex.convictedOf, ex.TaxFraud))


<syntaxhighlight>
# He pleaded guilty to conspiracy.
g.add((ex.PaulManafort, ex.pleadGuiltyTo, ex.Conspiracy))


from rdflib import Graph, Namespace, URIRef, BNode, Literal
# He was sentenced to prison.
from rdflib.namespace import RDF, FOAF, XSD
g.add((ex.PaulManafort, ex.sentencedTo, ex.Prison))


g = Graph()
# He negotiated a plea agreement.
ex = Namespace("http://example.org/")
g.add((ex.PaulManafort, ex.negotiated, ex.PleaAgreement))


# Rick Gates was charged with money laundering, tax evasion and foreign lobbying.
g.add((ex.RickGates, ex.chargedWith, ex.MoneyLaundering))
g.add((ex.RickGates, ex.chargedWith, ex.TaxEvasion))
g.add((ex.RickGates, ex.chargedWith, ex.ForeignLobbying))


# How to represent the address of Cade Tracey. From probably the worst solution to the best.
# He pleaded guilty to conspiracy and lying to FBI.
g.add((ex.RickGates, ex.pleadGuiltyTo, ex.Conspiracy))
g.add((ex.RickGates, ex.pleadGuiltyTo, ex.LyingToFBI))


# Solution 1 -
# Use the serialize method of rdflib.Graph to write out the model in different formats (on screen or to file)
# Make the entire address into one Literal. However, Generally we want to separate each part of an address into their own triples. This is useful for instance if we want to find only the streets where people live.  
print(g.serialize(format="ttl")) # To screen
#g.serialize("lab1.ttl", format="ttl") # To file


g.add((ex.Cade_Tracey, ex.livesIn, Literal("1516_Henry_Street, Berkeley, California 94709, USA")))
# Loop through the triples in the model to print out all triples that have pleading guilty as predicate
for subject, object in g[ : ex.pleadGuiltyTo :]:
    print(subject, ex.pleadGuiltyTo, object)


# --- IF you have more time tasks ---


# Solution 2 -
# Michael Cohen, Michael Flynn and the lying is part of lab 2 and therefore the answer is not provided this week
# Seperate the different pieces information into their own triples


g.add((ex.Cade_tracey, ex.street, Literal("1516_Henry_Street")))
#Write a method (function) that submits your model for rendering and saves the returned image to file.
g.add((ex.Cade_tracey, ex.city, Literal("Berkeley")))
import requests
g.add((ex.Cade_tracey, ex.state, Literal("California")))
import shutil
g.add((ex.Cade_tracey, ex.zipcode, Literal("94709")))
g.add((ex.Cade_tracey, ex.country, Literal("USA")))


def graphToImage(graphInput):
    data = {"rdf":graphInput, "from":"ttl", "to":"png"}
    link = "http://www.ldf.fi/service/rdf-grapher"
    response = requests.get(link, params = data, stream=True)
    # print(response.content)
    print(response.raw)
    with open("lab1.png", "wb") as file:
        shutil.copyfileobj(response.raw, file)


# Solution 3 - Some parts of the addresses can make more sense to be resources than Literals.
graph = g.serialize(format="ttl")
# Larger concepts like a city or state are typically represented as resources rather than Literals, but this is not necesarilly a requirement in the case that you don't intend to say more about them.
graphToImage(graph)


g.add((ex.Cade_tracey, ex.street, Literal("1516_Henry_Street")))
</syntaxhighlight>
g.add((ex.Cade_tracey, ex.city, ex.Berkeley))
g.add((ex.Cade_tracey, ex.state, ex.California))
g.add((ex.Cade_tracey, ex.zipcode, Literal("94709")))
g.add((ex.Cade_tracey, ex.country, ex.USA))


=2 [[/info216.wiki.uib.no/Lab: SPARQL|Lab: SPARQL queries]] =
<syntaxhighlight>
List all triples in your graph.


# Solution 4
select * where {
# Grouping of the information into an Address. We can Represent the address concept with its own URI OR with a Blank Node.
?s ?p ?o .
# One advantage of this is that we can easily remove the entire address, instead of removing each individual part of the address.  
}
# Solution 4 or 5 is how I would recommend to make addresses. Here, ex.CadeAddress could also be called something like ex.address1 or so on, if you want to give each address a unique ID.


# Address URI - CadeAdress
List the first 100 triples in your graph.


g.add((ex.Cade_Tracey, ex.address, ex.CadeAddress))
select * where {
g.add((ex.CadeAddress, RDF.type, ex.Address))
?s ?p ?o .
g.add((ex.CadeAddress, ex.street, Literal("1516 Henry Street")))
} limit 100
g.add((ex.CadeAddress, ex.city, ex.Berkeley))
g.add((ex.CadeAddress, ex.state, ex.California))
g.add((ex.CadeAddress, ex.postalCode, Literal("94709")))
g.add((ex.CadeAddress, ex.country, ex.USA))


# OR
Count the number of triples in your graph.


# Blank node for Address. 
select (count(?s)as ?tripleCount) where {
address = BNode()
?s ?p ?o .
g.add((ex.Cade_Tracey, ex.address, address))
}
g.add((address, RDF.type, ex.Address))
g.add((address, ex.street, Literal("1516 Henry Street", datatype=XSD.string)))
g.add((address, ex.city, ex.Berkeley))
g.add((address, ex.state, ex.California))
g.add((address, ex.postalCode, Literal("94709", datatype=XSD.string)))
g.add((address, ex.country, ex.USA))


Count the number of indictments in your graph.


# Solution 5 using existing vocabularies for address
PREFIX muellerkg: <http://example.org#>
select (Count(?s)as ?numIndictment) where {
?s ?p muellerkg:Indictment .
}


# (in this case https://schema.org/PostalAddress from schema.org).
List everyone who pleaded guilty, along with the name of the investigation.
# Also using existing ontology for places like California. (like http://dbpedia.org/resource/California from dbpedia.org)


schema = Namespace("https://schema.org/")
PREFIX m: <http://example.org#>
dbp = Namespace("https://dpbedia.org/resource/")
select ?name ?s where {
?s ?p m:guilty-plea;
    m:name ?name.


g.add((ex.Cade_Tracey, schema.address, ex.CadeAddress))
List everyone who were convicted, but who had their conviction overturned by which president.
g.add((ex.CadeAddress, RDF.type, schema.PostalAddress))
g.add((ex.CadeAddress, schema.streetAddress, Literal("1516 Henry Street")))
g.add((ex.CadeAddress, schema.addresCity, dbp.Berkeley))
g.add((ex.CadeAddress, schema.addressRegion, dbp.California))
g.add((ex.CadeAddress, schema.postalCode, Literal("94709")))
g.add((ex.CadeAddress, schema.addressCountry, dbp.United_States))


</syntaxhighlight>
PREFIX muellerkg: <http://example.org#>
#List everyone who were convicted, but who had their conviction overturned by which president.


===Typed Literals===
select ?name ?president  where {
<syntaxhighlight>
?s ?p muellerkg:conviction;
from rdflib import Graph, Literal, Namespace
muellerkg:name ?name;
from rdflib.namespace import XSD
    muellerkg:overturned true;
g = Graph()
    muellerkg:president ?president.
ex = Namespace("http://example.org/")
} limit 100


g.add((ex.Cade, ex.age, Literal(27, datatype=XSD.integer)))
For each investigation, list the number of indictments made.
g.add((ex.Cade, ex.gpa, Literal(3.3, datatype=XSD.float)))
g.add((ex.Cade, FOAF.name, Literal("Cade Tracey", datatype=XSD.string)))
g.add((ex.Cade, ex.birthday, Literal("2006-01-01", datatype=XSD.date)))
</syntaxhighlight>


PREFIX muellerkg: <http://example.org#>
select ?investigation (count(?investigation) as ?numIndictments) where {
?s muellerkg:investigation ?investigation .
} group by (?investigation)


===Writing and reading graphs/files===
For each investigation with multiple indictments, list the number of indictments made.


<syntaxhighlight>
PREFIX muellerkg: <http://example.org#>
  # Writing the graph to a file on your system. Possible formats = turtle, n3, xml, nt.
select ?investigation (count(?investigation) as ?numIndictments) where {
g.serialize(destination="triples.txt", format="turtle")
?s muellerkg:investigation ?investigation.
} group by (?investigation)
having (?numIndictments > 1)


  # Parsing a local file
For each investigation with multiple indictments, list the number of indictments made, sorted with the most indictments first.
parsed_graph = g.parse(location="triples.txt", format="turtle")


  # Parsing a remote endpoint like Dbpedia
PREFIX muellerkg: <http://example.org#>
dbpedia_graph = g.parse("http://dbpedia.org/resource/Pluto")
select ?investigation (count(?investigation) as ?numIndictments) where {
</syntaxhighlight>
?s muellerkg:investigation ?investigation.
} group by (?investigation)
having (?numIndictments > 1)
order by desc(?numIndictments)


===Graph Binding===
For each president, list the numbers of convictions and of pardons made after conviction.
<syntaxhighlight>
#Graph Binding is useful for at least two reasons:
#(1) We no longer need to specify prefixes with SPARQL queries if they are already binded to the graph.
#(2) When serializing the graph, the serialization will show the correct expected prefix
# instead of default namespace names ns1, ns2 etc.


g = Graph()
PREFIX muellerkg: <http://example.org#>
 
SELECT ?president (COUNT(?conviction) AS ?numConvictions) (COUNT(?pardon) AS ?numPardoned)  
ex = Namespace("http://example.org/")
WHERE {
dbp = Namespace("http://dbpedia.org/resource/")
    ?indictment muellerkg:president ?president ;
schema = Namespace("https://schema.org/")
                muellerkg:outcome muellerkg:conviction .
    BIND(?indictment AS ?conviction)
    OPTIONAL {
        ?indictment muellerkg:pardoned true .
        BIND(?indictment AS ?pardon)
    }
}
GROUP BY ?president


g.bind("ex", ex)
g.bind("dbp", dbp)
g.bind("schema", schema)
</syntaxhighlight>
</syntaxhighlight>


===Collection Example===
== 3 [[/info216.wiki.uib.no/Lab: SPARQL Programming|Lab: SPARQL programming]] ==
 
<syntaxhighlight>
<syntaxhighlight>
from rdflib import Graph, Namespace
from rdflib.collection import Collection


from rdflib import Graph, Namespace, RDF, FOAF
from SPARQLWrapper import SPARQLWrapper, JSON, POST, GET, TURTLE


# Sometimes we want to add many objects or subjects for the same predicate at once.
g = Graph()
# In these cases we can use Collection() to save some time.
g.parse("Russia_investigation_kg.ttl")
# In this case I want to add all countries that Emma has visited at once.


b = BNode()
# ----- RDFLIB -----
g.add((ex.Emma, ex.visit, b))
ex = Namespace('http://example.org#')
Collection(g, b,
    [ex.Portugal, ex.Italy, ex.France, ex.Germany, ex.Denmark, ex.Sweden])


# OR
NS = {
    '': ex,
    'rdf': RDF,
    'foaf': FOAF,
}


g.add((ex.Emma, ex.visit, ex.EmmaVisits))
# Print out a list of all the predicates used in your graph.
Collection(g, ex.EmmaVisits,
task1 = g.query("""
     [ex.Portugal, ex.Italy, ex.France, ex.Germany, ex.Denmark, ex.Sweden])
SELECT DISTINCT ?p WHERE{
     ?s ?p ?o .
}
""", initNs=NS)


</syntaxhighlight>
print(list(task1))


==SPARQL==
# Print out a sorted list of all the presidents represented in your graph.
 
task2 = g.query("""
Also see the [[SPARQL Examples]] page!
SELECT DISTINCT ?president WHERE{
 
    ?s :president ?president .
===Querying a local ("in memory") graph===
}
 
ORDER BY ?president
Example contents of the file family.ttl:
""", initNs=NS)
@prefix rex: <http://example.org/royal#> .
@prefix fam: <http://example.org/family#> .
rex:IngridAlexandra fam:hasParent rex:HaakonMagnus .
rex:SverreMagnus fam:hasParent rex:HaakonMagnus .
rex:HaakonMagnus fam:hasParent rex:Harald .
rex:MarthaLouise fam:hasParent rex:Harald .
rex:HaakonMagnus fam:hasSister rex:MarthaLouise .
 
import rdflib
g = rdflib.Graph()
g.parse("family.ttl", format='ttl')
qres = g.query("""
PREFIX fam: <http://example.org/family#>
    SELECT ?child ?sister WHERE {
        ?child fam:hasParent ?parent .
        ?parent fam:hasSister ?sister .
    }""")
for row in qres:
    print("%s has aunt %s" % row)
 
With a prepared query, you can write the query once, and then bind some of the variables each time you use it:
import rdflib
g = rdflib.Graph()
g.parse("family.ttl", format='ttl')
q = rdflib.plugins.sparql.prepareQuery(
        """SELECT ?child ?sister WHERE {
                  ?child fam:hasParent ?parent .
                  ?parent fam:hasSister ?sister .
        }""",
        initNs = { "fam": "http://example.org/family#"})
sm = rdflib.URIRef("http://example.org/royal#SverreMagnus")
for row in g.query(q, initBindings={'child': sm}):
        print(row)


===Select all contents of lists (rdfllib.Collection)===
print(list(task2))
<syntaxhighlight>


# rdflib.Collection has a different interntal structure so it requires a slightly more advance query. Here I am selecting all places that Emma has visited.
# Create dictionary (Python dict) with all the represented presidents as keys. For each key, the value is a list of names of people indicted under that president.
task3_dic = {}


PREFIX ex:  <http://example.org/>
task3 = g.query("""
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?president ?person WHERE{
 
    ?s :president ?president;
SELECT ?visit
      :name ?person;
WHERE {
      :outcome :indictment.
  ex:Emma ex:visit/rdf:rest*/rdf:first ?visit
}
}
</syntaxhighlight>
""", initNs=NS)


for president, person in task3:
    if president not in task3_dic:
        task3_dic[president] = [person]
    else:
        task3_dic[president].append(person)


===Using parameters/variables in rdflib queries===
print(task3_dic)


<syntaxhighlight>
# Use an ASK query to investigate whether Donald Trump has pardoned more than 5 people.
from rdflib import Graph, Namespace, URIRef
from rdflib.plugins.sparql import prepareQuery


g = Graph()
task4 = g.query("""
ex = Namespace("http://example.org/")
    ASK{
g.bind("ex", ex)
        SELECT ?count WHERE{{
          SELECT (COUNT(?s) as ?count) WHERE{
            ?s :pardoned :true;
                  :president :Bill_Clinton  .
                }}
        FILTER (?count > 5)  
        }
    }
""", initNs=NS)


g.add((ex.Cade, ex.livesIn, ex.France))
print(task4.askAnswer)
g.add((ex.Anne, ex.livesIn, ex.Norway))
g.add((ex.Sofie, ex.livesIn, ex.Sweden))
g.add((ex.Per, ex.livesIn, ex.Norway))
g.add((ex.John, ex.livesIn, ex.USA))




def find_people_from_country(country):
# task5 = g.query("""  
        country = URIRef(ex + country)
# DESCRIBE :Donald_Trump
        q = prepareQuery(
# """, initNs=NS)
        """
        PREFIX ex: <http://example.org/>
        SELECT ?person WHERE {
        ?person ex:livesIn ?country.
        }
        """)


        capital_result = g.query(q, initBindings={'country': country})
# print(task5.serialize())


        for row in capital_result:
# ----- SPARQLWrapper -----
            print(row)


find_people_from_country("Norway")
SERVER = 'http://localhost:7200' #Might need to replace this
</syntaxhighlight>
REPOSITORY = 'Labs' #Replace with your repository name


===SELECTING data from Blazegraph via Python===
# Query Endpoint
<syntaxhighlight>
sparql = SPARQLWrapper(f'{SERVER}/repositories/{REPOSITORY}')
 
# Update Endpoint
from SPARQLWrapper import SPARQLWrapper, JSON
sparqlUpdate = SPARQLWrapper(f'{SERVER}/repositories/{REPOSITORY}/statements')
 
# This creates a server connection to the same URL that contains the graphic interface for Blazegraph.
# You also need to add "sparql" to end of the URL like below.
 
sparql = SPARQLWrapper("http://localhost:9999/blazegraph/sparql")
 
# SELECT all triples in the database.


# Ask whether there was an ongoing indictment on the date 1990-01-01.
sparql.setQuery("""
sparql.setQuery("""
     SELECT DISTINCT ?p WHERE {
     PREFIX ns1: <http://example.org#>
    ?s ?p ?o.
    ASK {
        SELECT ?end ?start
        WHERE{
            ?s ns1:investigation_end ?end;
              ns1:investigation_start ?start;
              ns1:outcome ns1:indictment.
            FILTER(?start <= "1990-01-01"^^xsd:date && ?end >= "1990-01-01"^^xsd:date)
    }
     }
     }
""")
""")
sparql.setReturnFormat(JSON)
sparql.setReturnFormat(JSON)
results = sparql.query().convert()
results = sparql.query().convert()
print(f"Are there any investigation on the 1990-01-01: {results['boolean']}")


for result in results["results"]["bindings"]:
# List ongoing indictments on that date 1990-01-01.
    print(result["p"]["value"])
 
# SELECT all interests of Cade
 
sparql.setQuery("""
sparql.setQuery("""
     PREFIX ex: <http://example.org/>
     PREFIX ns1: <http://example.org#>
     SELECT DISTINCT ?interest WHERE {
     SELECT ?s
    ex:Cade ex:interest ?interest.
    WHERE{
        ?s ns1:investigation_end ?end;
          ns1:investigation_start ?start;
          ns1:outcome ns1:indictment.
        FILTER(?start <= "1990-01-01"^^xsd:date && ?end >= "1990-01-01"^^xsd:date)
     }
     }
""")
""")
sparql.setReturnFormat(JSON)
sparql.setReturnFormat(JSON)
results = sparql.query().convert()
results = sparql.query().convert()


print("The ongoing investigations on the 1990-01-01 are:")
for result in results["results"]["bindings"]:
for result in results["results"]["bindings"]:
     print(result["interest"]["value"])
     print(result["s"]["value"])
</syntaxhighlight>
 
===Updating data from Blazegraph via Python===
<syntaxhighlight>
from SPARQLWrapper import SPARQLWrapper, POST, DIGEST
 
namespace = "kb"
sparql = SPARQLWrapper("http://localhost:9999/blazegraph/namespace/"+ namespace + "/sparql")


sparql.setMethod(POST)
# Describe investigation number 100 (muellerkg:investigation_100).
sparql.setQuery("""
sparql.setQuery("""
     PREFIX ex: <http://example.org/>
     PREFIX ns1: <http://example.org#>
     INSERT DATA{
     DESCRIBE ns1:investigation_100
    ex:Cade ex:interest ex:Mathematics.
    }
""")
""")


results = sparql.query()
sparql.setReturnFormat(TURTLE)
print(results.response.read())
results = sparql.query().convert()


print(results)


</syntaxhighlight>
# Print out a list of all the types used in your graph.
===Retrieving data from Wikidata with SparqlWrapper===
sparql.setQuery("""
<syntaxhighlight>
    PREFIX ns1: <http://example.org#>
from SPARQLWrapper import SPARQLWrapper, JSON
    PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>


sparql = SPARQLWrapper("https://query.wikidata.org/sparql")
     SELECT DISTINCT ?types
# In the query I want to select all the Vitamins in wikidata.
    WHERE{
 
        ?s rdf:type ?types .  
sparql.setQuery("""
    }
     SELECT ?nutrient ?nutrientLabel WHERE
{
  ?nutrient wdt:P279 wd:Q34956.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
""")
""")


sparql.setReturnFormat(JSON)
sparql.setReturnFormat(JSON)
results = sparql.query().convert()
results = sparql.query().convert()
rdf_Types = []


for result in results["results"]["bindings"]:
for result in results["results"]["bindings"]:
     print(result["nutrient"]["value"], "  ", result["nutrientLabel"]["value"])
     rdf_Types.append(result["types"]["value"])
</syntaxhighlight>


print(rdf_Types)


More examples can be found in the example section on the official query service here: https://query.wikidata.org/.
# Update the graph to that every resource that is an object in a muellerkg:investigation triple has the rdf:type muellerkg:Investigation.
update_str = """
    PREFIX ns1: <http://example.org#>
    PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>


===Download from BlazeGraph===
    INSERT{
        ?invest rdf:type ns1:Investigation .
    }
    WHERE{
        ?s ns1:investigation ?invest .
}"""


<syntaxhighlight>
sparqlUpdate.setQuery(update_str)
"""
sparqlUpdate.setMethod(POST)
Dumps a database to a local RDF file.
sparqlUpdate.query()
You need to install the SPARQLWrapper package first...
"""


import datetime
#To Test
from SPARQLWrapper import SPARQLWrapper, RDFXML
sparql.setQuery("""
 
    prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
# your namespace, the default is 'kb'
    PREFIX ns1: <http://example.org#>
ns = 'kb'
 
# the SPARQL endpoint
endpoint = 'http://info216.i2s.uib.no/bigdata/namespace/' + ns + '/sparql'
 
# - the endpoint just moved, the old one was:
# endpoint = 'http://i2s.uib.no:8888/bigdata/namespace/' + ns + '/sparql'
 
# create wrapper
wrapper = SPARQLWrapper(endpoint)
 
# prepare the SPARQL update
wrapper.setQuery('CONSTRUCT { ?s ?p ?o } WHERE { ?s ?p ?o }')
wrapper.setReturnFormat(RDFXML)
 
# execute the SPARQL update and convert the result to an rdflib.Graph
graph = wrapper.query().convert()
 
# the destination file, with code to make it timestamped
destfile = 'rdf_dumps/slr-kg4news-' + datetime.datetime.now().strftime('%Y%m%d-%H%M') + '.rdf'
 
# serialize the result to file
graph.serialize(destination=destfile, format='ttl')
 
# report and quit
print('Wrote %u triples to file %s .' %
      (len(res), destfile))
</syntaxhighlight>
 
===Query Dbpedia with SparqlWrapper===
 
<syntaxhighlight>
from SPARQLWrapper import SPARQLWrapper, JSON
 
sparql = SPARQLWrapper("http://dbpedia.org/sparql")


sparql.setQuery("""
     ASK{
     PREFIX dbr: <http://dbpedia.org/resource/>
        ns1:watergate rdf:type ns1:Investigation.
    PREFIX dbo: <http://dbpedia.org/ontology/>
    PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
    SELECT ?comment
    WHERE {
    dbr:Barack_Obama rdfs:comment ?comment.
    FILTER (langMatches(lang(?comment),"en"))
     }
     }
""")
""")
Line 461: Line 358:
sparql.setReturnFormat(JSON)
sparql.setReturnFormat(JSON)
results = sparql.query().convert()
results = sparql.query().convert()
print(results['boolean'])


for result in results["results"]["bindings"]:
# Update the graph to that every resource that is an object in a muellerkg:person triple has the rdf:type muellerkg:IndictedPerson.
    print(result["comment"]["value"])
update_str = """
</syntaxhighlight>
    PREFIX ns1: <http://example.org#>
 
    PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
==Lifting CSV to RDF==


<syntaxhighlight>
    INSERT{
from rdflib import Graph, Literal, Namespace, URIRef
        ?person rdf:type ns1:IndictedPerson .
from rdflib.namespace import RDF, FOAF, RDFS, OWL
    }
import pandas as pd
    WHERE{
        ?s ns1:name ?person .
}"""


g = Graph()
sparqlUpdate.setQuery(update_str)
ex = Namespace("http://example.org/")
sparqlUpdate.setMethod(POST)
g.bind("ex", ex)
sparqlUpdate.query()


# Load the CSV data as a pandas Dataframe.
#To test, run the query in the above task, replacing the ask query with e.g. ns1:Deborah_Gore_Dean rdf:type ns1:IndictedPerson
csv_data = pd.read_csv("task1.csv")


# Here I deal with spaces (" ") in the data. I replace them with "_" so that URI's become valid.
# Update the graph so all the investigation nodes (such as muellerkg:watergate) become the subject in a dc:title triple with the corresponding string (watergate) as the literal.
csv_data = csv_data.replace(to_replace=" ", value="_", regex=True)
update_str = """
    PREFIX ns1: <http://example.org#>
    PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
    PREFIX dc: <http://purl.org/dc/elements/1.1/>


# Here I mark all missing/empty data as "unknown". This makes it easy to delete triples containing this later.
    INSERT{
csv_data = csv_data.fillna("unknown")
        ?invest dc:title ?investString.
    }
    WHERE{
        ?s ns1:investigation ?invest .
        BIND (replace(str(?invest), str(ns1:), "") AS ?investString)
}"""


# Loop through the CSV data, and then make RDF triples.
sparqlUpdate.setQuery(update_str)
for index, row in csv_data.iterrows():
sparqlUpdate.setMethod(POST)
    # The names of the people act as subjects.
sparqlUpdate.query()
    subject = row['Name']
    # Create triples: e.g. "Cade_Tracey - age - 27"
    g.add((URIRef(ex + subject), URIRef(ex + "age"), Literal(row["Age"])))
    g.add((URIRef(ex + subject), URIRef(ex + "married"), URIRef(ex + row["Spouse"])))
    g.add((URIRef(ex + subject), URIRef(ex + "country"), URIRef(ex + row["Country"])))


    # If We want can add additional RDF/RDFS/OWL information e.g
#Same test as above, replace it with e.g. ns1:watergate dc:title "watergate"
    g.add((URIRef(ex + subject), RDF.type, FOAF.Person))


# I remove triples that I marked as unknown earlier.
# Print out a sorted list of all the indicted persons represented in your graph.
g.remove((None, None, URIRef("http://example.org/unknown")))
sparql.setQuery("""
    PREFIX ns1: <http://example.org#>
    PREFIX foaf: <http://xmlns.com/foaf/0.1/>


# Clean printing of the graph.
     SELECT ?name
print(g.serialize(format="turtle").decode())
     WHERE{
</syntaxhighlight>
     ?s  ns1:name ?name;
 
            ns1:outcome ns1:indictment.
===CSV file for above example===
     }
 
     ORDER BY ?name
<syntaxhighlight>
"Name","Age","Spouse","Country"
"Cade Tracey","26","Mary Jackson","US"
"Bob Johnson","21","","Canada"
"Mary Jackson","25","","France"
"Phil Philips","32","Catherine Smith","Japan"
</syntaxhighlight>
 
 
=Coding Tasks Lab 6=
<syntaxhighlight>
import pandas as pd
 
 
from rdflib import Graph, Namespace, URIRef, Literal, BNode
from rdflib.namespace import RDF, XSD
 
 
ex = Namespace("http://example.org/")
sem = Namespace("http://semanticweb.cs.vu.nl/2009/11/sem/")
 
g = Graph()
g.bind("ex", ex)
g.bind("sem", sem)
 
 
# Removing unwanted characters
df = pd.read_csv('russia-investigation.csv')
# Here I deal with spaces (" ") in the data. I replace them with "_" so that URI's become valid.
df = df.replace(to_replace=" ", value="_", regex=True)
# This may seem odd, but in the data set we have a name like this:("Scooter"). So we have to remove quotation marks
df = df.replace(to_replace=f'"', value="", regex=True)
# # Here I mark all missing/empty data as "unknown". This makes it easy to delete triples containing this later.
df = df.fillna("unknown")
 
# Loop through the CSV data, and then make RDF triples.
for index, row in df.iterrows():
     name = row['investigation']
     investigation = URIRef(ex + name)
     g.add((investigation, RDF.type, sem.Event))
    investigation_start = row["investigation-start"]
    g.add((investigation, sem.hasBeginTimeStamp, Literal(
        investigation_start, datatype=XSD.datetime)))
    investigation_end = row["investigation-end"]
    g.add((investigation, sem.hasEndTimeStamp, Literal(
        investigation_end, datatype=XSD.datetime)))
    investigation_end = row["investigation-days"]
    g.add((investigation, sem.hasXSDDuration, Literal(
        investigation_end, datatype=XSD.Days)))
    person = row["name"]
    person = URIRef(ex + person)
    g.add((investigation, sem.Actor, person))
    result = row['type']
    g.add((investigation, sem.hasSubEvent, Literal(result, datatype=XSD.string)))
    overturned = row["overturned"]
    g.add((investigation, ex.overtuned, Literal(overturned, datatype=XSD.boolean)))
    pardoned = row["pardoned"]
    g.add((investigation, ex.pardon, Literal(pardoned, datatype=XSD.boolean)))
 
g.serialize("output.ttl", format="ttl")
print(g.serialize(format="turtle"))
 
</syntaxhighlight>
<!--
==Lifting XML to RDF==
<syntaxhighlight>
from rdflib import Graph, Literal, Namespace, URIRef
from rdflib.namespace import RDF, XSD, RDFS
import xml.etree.ElementTree as ET
 
g = Graph()
ex = Namespace("http://example.org/TV/")
prov = Namespace("http://www.w3.org/ns/prov#")
g.bind("ex", ex)
g.bind("prov", prov)
 
tree = ET.parse("tv_shows.xml")
root = tree.getroot()
 
for tv_show in root.findall('tv_show'):
    show_id = tv_show.attrib["id"]
    title = tv_show.find("title").text
 
    g.add((URIRef(ex + show_id), ex.title, Literal(title, datatype=XSD.string)))
    g.add((URIRef(ex + show_id), RDF.type, ex.TV_Show))
 
    for actor in tv_show.findall("actor"):
        first_name = actor.find("firstname").text
        last_name = actor.find("lastname").text
        full_name = first_name + "_" + last_name
       
        g.add((URIRef(ex + show_id), ex.stars, URIRef(ex + full_name)))
        g.add((URIRef(ex + full_name), ex.starsIn, URIRef(title)))
        g.add((URIRef(ex + full_name), RDF.type, ex.Actor))
 
print(g.serialize(format="turtle").decode())
</syntaxhighlight>
 
 
==RDFS==
 
===RDFS-plus (OWL) Properties===
<syntaxhighlight>
g.add((ex.married, RDF.type, OWL.SymmetricProperty))
g.add((ex.married, RDF.type, OWL.IrreflexiveProperty))
g.add((ex.livesWith, RDF.type, OWL.ReflexiveProperty))
g.add((ex.livesWith, RDF.type, OWL.SymmetricProperty))
g.add((ex.sibling, RDF.type, OWL.TransitiveProperty))
g.add((ex.sibling, RDF.type, OWL.SymmetricProperty))
g.add((ex.sibling, RDF.type, OWL.IrreflexiveProperty))
g.add((ex.hasFather, RDF.type, OWL.FunctionalProperty))
g.add((ex.hasFather, RDF.type, OWL.AsymmetricProperty))
g.add((ex.hasFather, RDF.type, OWL.IrreflexiveProperty))
g.add((ex.fatherOf, RDF.type, OWL.AsymmetricProperty))
g.add((ex.fatherOf, RDF.type, OWL.IrreflexiveProperty))
 
# Sometimes there is no definite answer, and it comes down to how we want to model our properties
# e.g is livesWith a transitive property? Usually yes, but we can also want to specify that a child lives with both of her divorced parents.
# which means that: (mother livesWith child % child livesWith father) != mother livesWith father. Which makes it non-transitive.
</syntaxhighlight>
 
===RDFS inference with RDFLib===
You can use the OWL-RL package to add inference capabilities to RDFLib. It can be installed using the pip install command:
<syntaxhighlight>
pip install owlrl
</syntaxhighlight>
Or download it from [https://github.com/RDFLib/OWL-RL GitHub] and copy the ''owlrl'' subfolder into your project folder next to your Python files.
 
[https://owl-rl.readthedocs.io/en/latest/owlrl.html OWL-RL documentation.]
 
Example program to get you started. In this example we are creating the graph using sparql.update, but it is also possible to parse the data from a file.
<syntaxhighlight>
import rdflib.plugins.sparql.update
import owlrl.RDFSClosure
 
g = rdflib.Graph()
 
ex = rdflib.Namespace('http://example.org#')
g.bind('', ex)
 
g.update("""
PREFIX ex: <http://example.org#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
INSERT DATA {
    ex:Socrates rdf:type ex:Man .
     ex:Man rdfs:subClassOf ex:Mortal .
}""")
 
rdfs = owlrl.RDFSClosure.RDFS_Semantics(g, False, False, False)
# RDF_Semantics parameters:
# - graph (rdflib.Graph) – The RDF graph to be extended.
# - axioms (bool) – Whether (non-datatype) axiomatic triples should be added or not.
# - daxioms (bool) – Whether datatype axiomatic triples should be added or not.
# - rdfs (bool) – Whether RDFS inference is also done (used in subclassed only).
# For now, you will in most cases use all False in RDFS_Semtantics.
 
# Generates the closure of the graph - generates the new entailed triples, but does not add them to the graph.
rdfs.closure()
# Adds the new triples to the graph and empties the RDFS triple-container.
rdfs.flush_stored_triples()
 
# Ask-query to check whether a new triple has been generated from the entailment.
b = g.query("""
PREFIX ex: <http://example.org#>
ASK {
     ex:Socrates rdf:type ex:Mortal .
}
""")
""")
print('Result: ' + bool(b))
</syntaxhighlight>


===Language tagged RDFS labels===
sparql.setReturnFormat(JSON)
<syntaxhighlight>
results = sparql.query().convert()
from rdflib import Graph, Namespace, Literal
from rdflib.namespace import RDFS
 
g = Graph()
ex = Namespace("http://example.org/")


g.add((ex.France, RDFS.label, Literal("Frankrike", lang="no")))
names = []
g.add((ex.France, RDFS.label, Literal("France", lang="en")))
g.add((ex.France, RDFS.label, Literal("Francia", lang="es")))


for result in results["results"]["bindings"]:
    names.append(result["name"]["value"])


</syntaxhighlight>
print(names)


==OWL==
# Print out the minimum, average and maximum indictment days for all the indictments in the graph.
===Basic inference with RDFLib===


You can use the OWL-RL package again as for Lecture 5.
sparql.setQuery("""
    prefix xsd: <http://www.w3.org/2001/XMLSchema#>
    PREFIX ns1: <http://example.org#>


Instead of:
    SELECT (AVG(?daysRemoved) as ?avg) (MAX(?daysRemoved) as ?max) (MIN(?daysRemoved) as ?min) WHERE{
<syntaxhighlight>
        ?s  ns1:indictment_days ?days;
# The next three lines add inferred triples to g.
            ns1:outcome ns1:indictment.
rdfs = owlrl.RDFSClosure.RDFS_Semantics(g, False, False, False)
   
rdfs.closure()
     BIND (replace(str(?days), str(ns1:), "")  AS ?daysR)
rdfs.flush_stored_triples()
     BIND (STRDT(STR(?daysR), xsd:float) AS ?daysRemoved)
</syntaxhighlight>
you can write this to get both RDFS and basic RDFS Plus / OWL inference:
<syntaxhighlight>
# The next three lines add inferred triples to g.
owl = owlrl.CombinedClosure.RDFS_OWLRL_Semantics(g, False, False, False)
owl.closure()
owl.flush_stored_triples()
</syntaxhighlight>
 
Example updates and queries:
<syntaxhighlight>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX ex: <http://example.org#>
 
INSERT DATA {
     ex:Socrates ex:hasWife ex:Xanthippe .
     ex:hasHusband owl:inverseOf ex:hasWife .
}
}
</syntaxhighlight>
""")


<syntaxhighlight>
sparql.setReturnFormat(JSON)
ASK {
results = sparql.query().convert()
  ex:Xanthippe ex:hasHusband ex:Socrates .
}
</syntaxhighlight>


<syntaxhighlight>
for result in results["results"]["bindings"]:
ASK {
    print(f'The longest an investigation lasted was: {result["max"]["value"]}')
  ex:Socrates ^ex:hasHusband ex:Xanthippe .
     print(f'The shortest an investigation lasted was: {result["min"]["value"]}')
}
     print(f'The average investigation lasted: {result["avg"]["value"]}')
</syntaxhighlight>
 
<syntaxhighlight>
INSERT DATA {
     ex:hasWife rdfs:subPropertyOf ex:hasSpouse .
     ex:hasSpouse rdf:type owl:SymmetricProperty .
}
</syntaxhighlight>


<syntaxhighlight>
# Print out the minimum, average and maximum indictment days for all the indictments in the graph per investigation.
ASK {
  ex:Socrates ex:hasSpouse ex:Xanthippe .
}
</syntaxhighlight>


<syntaxhighlight>
sparql.setQuery("""
ASK {
    prefix xsd: <http://www.w3.org/2001/XMLSchema#>
  ex:Socrates ^ex:hasSpouse ex:Xanthippe .
    PREFIX ns1: <http://example.org#>
}
</syntaxhighlight>


    SELECT ?investigation (AVG(?daysRemoved) as ?avg) (MAX(?daysRemoved) as ?max) (MIN(?daysRemoved) as ?min)  WHERE{
    ?s  ns1:indictment_days ?days;
        ns1:outcome ns1:indictment;
        ns1:investigation ?investigation.
   
    BIND (replace(str(?days), str(ns1:), "")  AS ?daysR)
    BIND (STRDT(STR(?daysR), xsd:float) AS ?daysRemoved)
    }
    GROUP BY ?investigation
""")


sparql.setReturnFormat(JSON)
results = sparql.query().convert()


for result in results["results"]["bindings"]:
    print(f'{result["investigation"]["value"]} - min: {result["min"]["value"]}, max: {result["max"]["value"]}, avg: {result["avg"]["value"]}')


===XML Data for above example===
<syntaxhighlight>
<data>
    <tv_show id="1050">
        <title>The_Sopranos</title>
        <actor>
            <firstname>James</firstname>
            <lastname>Gandolfini</lastname>
        </actor>
    </tv_show>
    <tv_show id="1066">
        <title>Seinfeld</title>
        <actor>
            <firstname>Jerry</firstname>
            <lastname>Seinfeld</lastname>
        </actor>
        <actor>
            <firstname>Julia</firstname>
            <lastname>Louis-dreyfus</lastname>
        </actor>
        <actor>
            <firstname>Jason</firstname>
            <lastname>Alexander</lastname>
        </actor>
    </tv_show>
</data>
</syntaxhighlight>
==Lifting HTML to RDF==
<syntaxhighlight>
from bs4 import BeautifulSoup as bs, NavigableString
from rdflib import Graph, URIRef, Namespace
from rdflib.namespace import RDF
g = Graph()
ex = Namespace("http://example.org/")
g.bind("ex", ex)
html = open("tv_shows.html").read()
html = bs(html, features="html.parser")
shows = html.find_all('li', attrs={'class': 'show'})
for show in shows:
    title = show.find("h3").text
    actors = show.find('ul', attrs={'class': 'actor_list'})
    for actor in actors:
        if isinstance(actor, NavigableString):
            continue
        else:
            actor = actor.text.replace(" ", "_")
            g.add((URIRef(ex + title), ex.stars, URIRef(ex + actor)))
            g.add((URIRef(ex + actor), RDF.type, ex.Actor))
    g.add((URIRef(ex + title), RDF.type, ex.TV_Show))
print(g.serialize(format="turtle").decode())
</syntaxhighlight>
===HTML code for the example above===
<syntaxhighlight>
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title></title>
</head>
<body>
    <div class="tv_shows">
        <ul>
            <li class="show">
                <h3>The_Sopranos</h3>
                <div class="irrelevant_data"></div>
                <ul class="actor_list">
                    <li>James Gandolfini</li>
                </ul>
            </li>
            <li class="show">
                <h3>Seinfeld</h3>
                <div class="irrelevant_data"></div>
                <ul class="actor_list">
                    <li >Jerry Seinfeld</li>
                    <li>Jason Alexander</li>
                    <li>Julia Louis-Dreyfus</li>
                </ul>
            </li>
        </ul>
    </div>
</body>
</html>
</syntaxhighlight>
==Web APIs with JSON==
<syntaxhighlight>
import requests
import json
import pprint
# Retrieve JSON data from API service URL. Then load it with the json library as a json object.
url = "http://api.geonames.org/postalCodeLookupJSON?postalcode=46020&#country=ES&username=demo"
data = requests.get(url).content.decode("utf-8")
data = json.loads(data)
pprint.pprint(data)
</syntaxhighlight>
</syntaxhighlight>


 
== Lab 4 JSON-LD==
==JSON-LD==
Part 1<syntaxhighlight lang="json-ld">
 
<syntaxhighlight>
import rdflib
 
g = rdflib.Graph()
 
example = """
{
{
   "@context": {
   "@context": {
    "name": "http://xmlns.com/foaf/0.1/name",
      "@base": "http://example.org/",
    "homepage": {
      "edges": "http://example.org/triple",
       "@id": "http://xmlns.com/foaf/0.1/homepage",
      "start": "http://example.org/source",
       "@type": "@id"
      "rel": "http://exaxmple.org/predicate",
    }
      "end": "http://example.org/object",
      "Person" : "http://example.org/Person",
      "birthday" : {
          "@id" : "http://example.org/birthday",
          "@type" : "xsd:date"
      },
       "nameEng" : {
          "@id" : "http://example.org/en/name",
          "@language" : "en"
      },
      "nameFr" : {
          "@id" : "http://example.org/fr/name",
          "@language" : "fr"
       },
      "nameCh" : {
          "@id" : "http://example.org/ch/name",
          "@language" : "ch"
      },
      "age" : {
          "@id" : "http://example.org/age",
          "@type" : "xsd:int"
      },
      "likes" : "http://example.org/games/likes",
      "haircolor" : "http://example.org/games/haircolor"
   },
   },
   "@id": "http://me.markus-lanthaler.com/",
   "@graph": [
  "name": "Markus Lanthaler",
      {
  "homepage": "http://www.markus-lanthaler.com/"
          "@id": "people/Jeremy",
          "@type": "Person",
          "birthday" : "1987.1.1",
          "nameEng" : "Jeremy",
          "age" : 26
      },
      {
          "@id": "people/Tom",
          "@type": "Person"
      },
      {
          "@id": "people/Ju",
          "@type": "Person",
          "birthday" : "2001.1.1",
          "nameCh" : "Ju",
          "age" : 22,
          "likes" : "bastketball"
      },
      {
          "@id": "people/Louis",
          "@type": "Person",
          "birthday" : "1978.1.1",
          "haircolor" : "Black",
          "nameFr" : "Louis",
          "age" : 45
      },
      {"edges" : [
      {
          "start" : "people/Jeremy",
          "rel" : "knows",
          "end" : "people/Tom"
      },
      {
          "start" : "people/Tom",
          "rel" : "knows",
          "end" : "people/Louis"
      },
      {
          "start" : "people/Louis",
          "rel" : "teaches",
          "end" : "people/Ju"
      },
      {
          "start" : "people/Ju",
          "rel" : "plays",
          "end" : "people/Jeremy"
      },
      {
          "start" : "people/Ju",
          "rel" : "plays",
          "end" : "people/Tom"
      }
      ]}
  ]
}
}
"""
</syntaxhighlight>Part 2-3<syntaxhighlight lang="python">
import rdflib


# json-ld parsing automatically deals with @contexts
CN_BASE = 'http://api.conceptnet.io/c/en/'
g.parse(data=example, format='json-ld')


# serialisation does expansion by default
g = rdflib.Graph()
for line in g.serialize(format='json-ld').decode().splitlines():
g.parse(CN_BASE+'indictment', format='json-ld')
    print(line)


# by supplying a context object, serialisation can do compaction
# To download JSON object:
context = {
    "foaf": "http://xmlns.com/foaf/0.1/"
}
for line in g.serialize(format='json-ld', context=context).decode().splitlines():
    print(line)
</syntaxhighlight>


import json
import requests


<div class="credits" style="text-align: right; direction: ltr; margin-left: 1em;">''INFO216, UiB, 2017-2020. All code examples are [https://creativecommons.org/choose/zero/ CC0].'' </div>
json_obj = requests.get(CN_BASE+'indictment').json()


==OWL - Complex Classes and Restrictions==
# To change the @context:
<syntaxhighlight>
import owlrl
from rdflib import Graph, Literal, Namespace, BNode
from rdflib.namespace import RDF, OWL, RDFS
from rdflib.collection import Collection


g = Graph()
context = {
ex = Namespace("http://example.org/")
    "@base": "http://ex.org/",
g.bind("ex", ex)
    "edges": "http://ex.org/triple/",
g.bind("owl", OWL)
    "start": "http://ex.org/s/",
    "rel": "http://ex.org/p/",
    "end": "http://ex.org/o/",
    "label": "http://ex.org/label"
}
json_obj['@context'] = context
json_str = json.dumps(json_obj)


# a Season is either Autumn, Winter, Spring, Summer
g = rdflib.Graph()
seasons = BNode()
g.parse(data=json_str, format='json-ld')
Collection(g, seasons, [ex.Winter, ex.Autumn, ex.Spring, ex.Summer])
g.add((ex.Season, OWL.oneOf, seasons))


# A Parent is a Father or Mother
# To extract triples (here with labels):
b = BNode()
Collection(g, b, [ex.Father, ex.Mother])
g.add((ex.Parent, OWL.unionOf, b))


# A Woman is a person who has the "female" gender
r = g.query("""
br = BNode()
        SELECT ?s ?sLabel ?p ?o ?oLabel WHERE {
g.add((br, RDF.type, OWL.Restriction))
            ?edge
g.add((br, OWL.onProperty, ex.gender))
                <http://ex.org/s/> ?s ;
g.add((br, OWL.hasValue, ex.Female))
                <http://ex.org/p/> ?p ;
bi = BNode()
                <http://ex.org/o/> ?o .
Collection(g, bi, [ex.Person, br])
            ?s <http://ex.org/label> ?sLabel .
g.add((ex.Woman, OWL.intersectionOf, bi))
            ?o <http://ex.org/label> ?oLabel .
}
        """, initNs={'cn': CN_BASE})
print(r.serialize(format='txt').decode())


# A vegetarian is a Person who only eats vegetarian food
# Construct a new graph:
br = BNode()
g.add((br, RDF.type, OWL.Restriction))
g.add((br, OWL.onProperty, ex.eats))
g.add((br, OWL.allValuesFrom, ex.VeganFood))
bi = BNode()
Collection(g, bi, [ex.Person, br])
g.add((ex.Vegetarian, OWL.intersectionOf, bi))


# A vegetarian is a Person who can not eat meat.
r = g.query("""
br = BNode()
        CONSTRUCT {
g.add((br, RDF.type, OWL.Restriction))
            ?s ?p ?o .
g.add((br, OWL.onProperty, ex.eats))
            ?s <http://ex.org/label> ?sLabel .
g.add((br, OWL.QualifiedCardinality, Literal(0)))
            ?o <http://ex.org/label> ?oLabel .
g.add((br, OWL.onClass, ex.Meat))
        } WHERE {
bi = BNode()
            ?edge <http://ex.org/s/> ?s ;
Collection(g, bi, [ex.Person, br])
                  <http://ex.org/p/> ?p ;
g.add((ex.Vegetarian, OWL.intersectionOf, bi))
                  <http://ex.org/o/> ?o .
 
            ?s <http://ex.org/label> ?sLabel .
# A Worried Parent is a parent who has at least one sick child
            ?o <http://ex.org/label> ?oLabel .
br = BNode()
}
g.add((br, RDF.type, OWL.Restriction))
        """, initNs={'cn': CN_BASE})
g.add((br, OWL.onProperty, ex.hasChild))
g.add((br, OWL.QualifiedMinCardinality, Literal(1)))
g.add((br, OWL.onClass, ex.Sick))
bi = BNode()
Collection(g, bi, [ex.Parent, br])
g.add((ex.WorriedParent, OWL.intersectionOf, bi))
 
# using the restriction above, If we now write...:  
g.add((ex.Bob, RDF.type, ex.Parent))
g.add((ex.Bob, ex.hasChild, ex.John))
g.add((ex.John, RDF.type, ex.Sick))
# ...we can infer with owl reasoning that Bob is a worried Parent even though we didn't specify it ourselves because Bob fullfills the restriction and Parent requirements.


print(r.graph.serialize(format='ttl'))
</syntaxhighlight>
</syntaxhighlight>
==Protege-OWL reasoning with HermiT==
[[:File:DL-reasoning-RoyalFamily-final.owl.txt | Example file]] from Lecture 13 about OWL-DL, rules and reasoning.
-->

Latest revision as of 09:55, 10 March 2025

Here we will present suggested solutions after each lab. The page will be updated as the course progresses

1 Lab: Getting started with VSCode, Python and RDFlib

from rdflib import Graph, Namespace

ex = Namespace('http://example.org/')

g = Graph()

g.bind("ex", ex)

# The Mueller Investigation was lead by Robert Mueller
g.add((ex.MuellerInvestigation, ex.leadBy, ex.RobertMueller))

# It involved Paul Manafort, Rick Gates, George Papadopoulos, Michael Flynn, Michael Cohen, and Roger Stone.
g.add((ex.MuellerInvestigation, ex.involved, ex.PaulManafort))
g.add((ex.MuellerInvestigation, ex.involved, ex.RickGates))
g.add((ex.MuellerInvestigation, ex.involved, ex.GeorgePapadopoulos))
g.add((ex.MuellerInvestigation, ex.involved, ex.MichaelFlynn))
g.add((ex.MuellerInvestigation, ex.involved, ex.MichaelCohen))
g.add((ex.MuellerInvestigation, ex.involved, ex.RogerStone))

# Paul Manafort was business partner of Rick Gates
g.add((ex.PaulManafort, ex.businessPartner, ex.RickGates))

# He was campaign chairman for Donald Trump
g.add((ex.PaulManafort, ex.campaignChairman, ex.DonaldTrump))

# He was charged with money laundering, tax evasion, and foreign lobbying.
g.add((ex.PaulManafort, ex.chargedWith, ex.MoneyLaundering))
g.add((ex.PaulManafort, ex.chargedWith, ex.TaxEvasion))
g.add((ex.PaulManafort, ex.chargedWith, ex.ForeignLobbying))

# He was convicted for bank and tax fraud.
g.add((ex.PaulManafort, ex.convictedOf, ex.BankFraud))
g.add((ex.PaulManafort, ex.convictedOf, ex.TaxFraud))

# He pleaded guilty to conspiracy.
g.add((ex.PaulManafort, ex.pleadGuiltyTo, ex.Conspiracy))

# He was sentenced to prison.
g.add((ex.PaulManafort, ex.sentencedTo, ex.Prison))

# He negotiated a plea agreement.
g.add((ex.PaulManafort, ex.negotiated, ex.PleaAgreement))

# Rick Gates was charged with money laundering, tax evasion and foreign lobbying.
g.add((ex.RickGates, ex.chargedWith, ex.MoneyLaundering))
g.add((ex.RickGates, ex.chargedWith, ex.TaxEvasion))
g.add((ex.RickGates, ex.chargedWith, ex.ForeignLobbying))

# He pleaded guilty to conspiracy and lying to FBI.
g.add((ex.RickGates, ex.pleadGuiltyTo, ex.Conspiracy))
g.add((ex.RickGates, ex.pleadGuiltyTo, ex.LyingToFBI))

# Use the serialize method of rdflib.Graph to write out the model in different formats (on screen or to file)
print(g.serialize(format="ttl")) # To screen
#g.serialize("lab1.ttl", format="ttl") # To file

# Loop through the triples in the model to print out all triples that have pleading guilty as predicate
for subject, object in g[ : ex.pleadGuiltyTo :]:
    print(subject, ex.pleadGuiltyTo, object)

# --- IF you have more time tasks ---

# Michael Cohen, Michael Flynn and the lying is part of lab 2 and therefore the answer is not provided this week 

#Write a method (function) that submits your model for rendering and saves the returned image to file.
import requests
import shutil

def graphToImage(graphInput):
    data = {"rdf":graphInput, "from":"ttl", "to":"png"}
    link = "http://www.ldf.fi/service/rdf-grapher"
    response = requests.get(link, params = data, stream=True)
    # print(response.content)
    print(response.raw)
    with open("lab1.png", "wb") as file:
        shutil.copyfileobj(response.raw, file)

graph = g.serialize(format="ttl")
graphToImage(graph)

2 Lab: SPARQL queries

List all triples in your graph.

select * where { 
	?s ?p ?o .
} 

List the first 100 triples in your graph.

select * where { 
	?s ?p ?o .
} limit 100 

Count the number of triples in your graph.

select (count(?s)as ?tripleCount) where { 
	?s ?p ?o .
} 

Count the number of indictments in your graph.

PREFIX muellerkg: <http://example.org#>
select (Count(?s)as ?numIndictment) where { 
	?s ?p muellerkg:Indictment .
} 

List everyone who pleaded guilty, along with the name of the investigation.

PREFIX m: <http://example.org#>
select ?name ?s where { 
	?s ?p m:guilty-plea;
    	m:name ?name.
}  

List everyone who were convicted, but who had their conviction overturned by which president.

PREFIX muellerkg: <http://example.org#>
#List everyone who were convicted, but who had their conviction overturned by which president.

select ?name ?president   where { 
	?s ?p muellerkg:conviction;
		muellerkg:name ?name;
    	muellerkg:overturned true;
     	muellerkg:president ?president.  	
} limit 100 

For each investigation, list the number of indictments made.

PREFIX muellerkg: <http://example.org#>
select ?investigation (count(?investigation) as ?numIndictments) where { 
	?s muellerkg:investigation ?investigation .
} group by (?investigation)

For each investigation with multiple indictments, list the number of indictments made.

PREFIX muellerkg: <http://example.org#>
select ?investigation (count(?investigation) as ?numIndictments) where { 
	?s muellerkg:investigation ?investigation.
} group by (?investigation)
having (?numIndictments > 1)

For each investigation with multiple indictments, list the number of indictments made, sorted with the most indictments first.

PREFIX muellerkg: <http://example.org#>
select ?investigation (count(?investigation) as ?numIndictments) where { 
	?s muellerkg:investigation ?investigation.
} group by (?investigation)
having (?numIndictments > 1)
order by desc(?numIndictments)

For each president, list the numbers of convictions and of pardons made after conviction.

PREFIX muellerkg: <http://example.org#>
SELECT ?president (COUNT(?conviction) AS ?numConvictions) (COUNT(?pardon) AS ?numPardoned) 
WHERE { 
    ?indictment muellerkg:president ?president ;
                muellerkg:outcome muellerkg:conviction .
    BIND(?indictment AS ?conviction)
    OPTIONAL {
        ?indictment muellerkg:pardoned true .
        BIND(?indictment AS ?pardon)
    }
} 
GROUP BY ?president

3 Lab: SPARQL programming

from rdflib import Graph, Namespace, RDF, FOAF
from SPARQLWrapper import SPARQLWrapper, JSON, POST, GET, TURTLE

g = Graph()
g.parse("Russia_investigation_kg.ttl")

# ----- RDFLIB -----
ex = Namespace('http://example.org#')

NS = {
    '': ex,
    'rdf': RDF,
    'foaf': FOAF,
}

# Print out a list of all the predicates used in your graph.
task1 = g.query("""
SELECT DISTINCT ?p WHERE{
    ?s ?p ?o .
}
""", initNs=NS)

print(list(task1))

# Print out a sorted list of all the presidents represented in your graph.
task2 = g.query("""
SELECT DISTINCT ?president WHERE{
    ?s :president ?president .
}
ORDER BY ?president
""", initNs=NS)

print(list(task2))

# Create dictionary (Python dict) with all the represented presidents as keys. For each key, the value is a list of names of people indicted under that president.
task3_dic = {}

task3 = g.query("""
SELECT ?president ?person WHERE{
    ?s :president ?president;
       :name ?person;
       :outcome :indictment.
}
""", initNs=NS)

for president, person in task3:
    if president not in task3_dic:
        task3_dic[president] = [person]
    else:
        task3_dic[president].append(person)

print(task3_dic)

# Use an ASK query to investigate whether Donald Trump has pardoned more than 5 people.

task4 = g.query("""
    ASK{
        SELECT ?count WHERE{{
  	        SELECT (COUNT(?s) as ?count) WHERE{
    	        ?s :pardoned :true;
                   :president :Bill_Clinton  .
                }}
        FILTER (?count > 5) 
        }
    }
""", initNs=NS)

print(task4.askAnswer)


# task5 = g.query(""" 
# DESCRIBE :Donald_Trump
# """, initNs=NS)

# print(task5.serialize())

# ----- SPARQLWrapper -----

SERVER = 'http://localhost:7200' #Might need to replace this
REPOSITORY = 'Labs' #Replace with your repository name

# Query Endpoint
sparql = SPARQLWrapper(f'{SERVER}/repositories/{REPOSITORY}') 
# Update Endpoint
sparqlUpdate = SPARQLWrapper(f'{SERVER}/repositories/{REPOSITORY}/statements')

# Ask whether there was an ongoing indictment on the date 1990-01-01.
sparql.setQuery("""
    PREFIX ns1: <http://example.org#>
    ASK {
        SELECT ?end ?start
        WHERE{
            ?s ns1:investigation_end ?end;
               ns1:investigation_start ?start;
               ns1:outcome ns1:indictment.
            FILTER(?start <= "1990-01-01"^^xsd:date && ?end >= "1990-01-01"^^xsd:date) 
	    }
    }
""")
sparql.setReturnFormat(JSON)
results = sparql.query().convert()
print(f"Are there any investigation on the 1990-01-01: {results['boolean']}")

# List ongoing indictments on that date 1990-01-01.
sparql.setQuery("""
    PREFIX ns1: <http://example.org#>
    SELECT ?s
    WHERE{
        ?s ns1:investigation_end ?end;
           ns1:investigation_start ?start;
           ns1:outcome ns1:indictment.
        FILTER(?start <= "1990-01-01"^^xsd:date && ?end >= "1990-01-01"^^xsd:date) 
    }
""")

sparql.setReturnFormat(JSON)
results = sparql.query().convert()

print("The ongoing investigations on the 1990-01-01 are:")
for result in results["results"]["bindings"]:
    print(result["s"]["value"])

# Describe investigation number 100 (muellerkg:investigation_100).
sparql.setQuery("""
    PREFIX ns1: <http://example.org#>
    DESCRIBE ns1:investigation_100
""")

sparql.setReturnFormat(TURTLE)
results = sparql.query().convert()

print(results)

# Print out a list of all the types used in your graph.
sparql.setQuery("""
    PREFIX ns1: <http://example.org#>
    PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

    SELECT DISTINCT ?types
    WHERE{
        ?s rdf:type ?types . 
    }
""")

sparql.setReturnFormat(JSON)
results = sparql.query().convert()

rdf_Types = []

for result in results["results"]["bindings"]:
    rdf_Types.append(result["types"]["value"])

print(rdf_Types)

# Update the graph to that every resource that is an object in a muellerkg:investigation triple has the rdf:type muellerkg:Investigation.
update_str = """
    PREFIX ns1: <http://example.org#>
    PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

    INSERT{
        ?invest rdf:type ns1:Investigation .
    }
    WHERE{
        ?s ns1:investigation ?invest .
}"""

sparqlUpdate.setQuery(update_str)
sparqlUpdate.setMethod(POST)
sparqlUpdate.query()

#To Test
sparql.setQuery("""
    prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
    PREFIX ns1: <http://example.org#>

    ASK{
        ns1:watergate rdf:type ns1:Investigation.
    }
""")

sparql.setReturnFormat(JSON)
results = sparql.query().convert()
print(results['boolean'])

# Update the graph to that every resource that is an object in a muellerkg:person triple has the rdf:type muellerkg:IndictedPerson.
update_str = """
    PREFIX ns1: <http://example.org#>
    PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

    INSERT{
        ?person rdf:type ns1:IndictedPerson .
    }
    WHERE{
        ?s ns1:name ?person .
}"""

sparqlUpdate.setQuery(update_str)
sparqlUpdate.setMethod(POST)
sparqlUpdate.query()

#To test, run the query in the above task, replacing the ask query with e.g. ns1:Deborah_Gore_Dean rdf:type ns1:IndictedPerson

# Update the graph so all the investigation nodes (such as muellerkg:watergate) become the subject in a dc:title triple with the corresponding string (watergate) as the literal.
update_str = """
    PREFIX ns1: <http://example.org#>
    PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
    PREFIX dc: <http://purl.org/dc/elements/1.1/>

    INSERT{
        ?invest dc:title ?investString.
    }
    WHERE{
        ?s ns1:investigation ?invest .
        BIND (replace(str(?invest), str(ns1:), "")  AS ?investString)
}"""

sparqlUpdate.setQuery(update_str)
sparqlUpdate.setMethod(POST)
sparqlUpdate.query()

#Same test as above, replace it with e.g. ns1:watergate dc:title "watergate"

# Print out a sorted list of all the indicted persons represented in your graph.
sparql.setQuery("""
    PREFIX ns1: <http://example.org#>
    PREFIX foaf: <http://xmlns.com/foaf/0.1/>

    SELECT ?name
    WHERE{
    ?s  ns1:name ?name;
            ns1:outcome ns1:indictment.
    }
    ORDER BY ?name
""")

sparql.setReturnFormat(JSON)
results = sparql.query().convert()

names = []

for result in results["results"]["bindings"]:
    names.append(result["name"]["value"])

print(names)

# Print out the minimum, average and maximum indictment days for all the indictments in the graph.

sparql.setQuery("""
    prefix xsd: <http://www.w3.org/2001/XMLSchema#>
    PREFIX ns1: <http://example.org#>

    SELECT (AVG(?daysRemoved) as ?avg) (MAX(?daysRemoved) as ?max) (MIN(?daysRemoved) as ?min)  WHERE{
        ?s  ns1:indictment_days ?days;
            ns1:outcome ns1:indictment.
    
    BIND (replace(str(?days), str(ns1:), "")  AS ?daysR)
    BIND (STRDT(STR(?daysR), xsd:float) AS ?daysRemoved)
}
""")

sparql.setReturnFormat(JSON)
results = sparql.query().convert()

for result in results["results"]["bindings"]:
    print(f'The longest an investigation lasted was: {result["max"]["value"]}')
    print(f'The shortest an investigation lasted was: {result["min"]["value"]}')
    print(f'The average investigation lasted: {result["avg"]["value"]}')

# Print out the minimum, average and maximum indictment days for all the indictments in the graph per investigation.

sparql.setQuery("""
    prefix xsd: <http://www.w3.org/2001/XMLSchema#>
    PREFIX ns1: <http://example.org#>

    SELECT ?investigation (AVG(?daysRemoved) as ?avg) (MAX(?daysRemoved) as ?max) (MIN(?daysRemoved) as ?min)  WHERE{
    ?s  ns1:indictment_days ?days;
        ns1:outcome ns1:indictment;
        ns1:investigation ?investigation.
    
    BIND (replace(str(?days), str(ns1:), "")  AS ?daysR)
    BIND (STRDT(STR(?daysR), xsd:float) AS ?daysRemoved)
    }
    GROUP BY ?investigation
""")

sparql.setReturnFormat(JSON)
results = sparql.query().convert()

for result in results["results"]["bindings"]:
    print(f'{result["investigation"]["value"]} - min: {result["min"]["value"]}, max: {result["max"]["value"]}, avg: {result["avg"]["value"]}')

Lab 4 JSON-LD

Part 1

{
  "@context": {
      "@base": "http://example.org/",
      "edges": "http://example.org/triple",
      "start": "http://example.org/source",
      "rel": "http://exaxmple.org/predicate",
      "end": "http://example.org/object",
      "Person" : "http://example.org/Person",
      "birthday" : {
          "@id" : "http://example.org/birthday",
          "@type" : "xsd:date"
      },
      "nameEng" : {
          "@id" : "http://example.org/en/name",
          "@language" : "en"
      },
      "nameFr" : {
          "@id" : "http://example.org/fr/name",
          "@language" : "fr"
      },
      "nameCh" : {
          "@id" : "http://example.org/ch/name",
          "@language" : "ch"
      },
      "age" : {
          "@id" : "http://example.org/age",
          "@type" : "xsd:int"
      },
      "likes" : "http://example.org/games/likes",
      "haircolor" : "http://example.org/games/haircolor"
  },
  "@graph": [
      {
          "@id": "people/Jeremy",
          "@type": "Person",
          "birthday" : "1987.1.1",
          "nameEng" : "Jeremy",
          "age" : 26
      },
      {
          "@id": "people/Tom",
          "@type": "Person"
      },
      {
          "@id": "people/Ju",
          "@type": "Person",
          "birthday" : "2001.1.1",
          "nameCh" : "Ju",
          "age" : 22,
          "likes" : "bastketball"
      },
      {
          "@id": "people/Louis",
          "@type": "Person",
          "birthday" : "1978.1.1",
          "haircolor" : "Black",
          "nameFr" : "Louis",
          "age" : 45
      },
      {"edges" : [
      {
          "start" : "people/Jeremy",
          "rel" : "knows",
          "end" : "people/Tom"
      },
      {
          "start" : "people/Tom",
          "rel" : "knows",
          "end" : "people/Louis"
      },
      {
          "start" : "people/Louis",
          "rel" : "teaches",
          "end" : "people/Ju"
      },
      {
          "start" : "people/Ju",
          "rel" : "plays",
          "end" : "people/Jeremy"
      },
      {
          "start" : "people/Ju",
          "rel" : "plays",
          "end" : "people/Tom"
      }
      ]}
  ]
}

Part 2-3

import rdflib

CN_BASE = 'http://api.conceptnet.io/c/en/'

g = rdflib.Graph()
g.parse(CN_BASE+'indictment', format='json-ld')

# To download JSON object:

import json
import requests

json_obj = requests.get(CN_BASE+'indictment').json()

# To change the @context:

context = {
     "@base": "http://ex.org/",
     "edges": "http://ex.org/triple/",
     "start": "http://ex.org/s/",
     "rel": "http://ex.org/p/",
     "end": "http://ex.org/o/",
     "label": "http://ex.org/label"
}
json_obj['@context'] = context
json_str = json.dumps(json_obj)

g = rdflib.Graph()
g.parse(data=json_str, format='json-ld')

# To extract triples (here with labels):

r = g.query("""
         SELECT ?s ?sLabel ?p ?o ?oLabel WHERE {
             ?edge
                 <http://ex.org/s/> ?s ;
                 <http://ex.org/p/> ?p ;
                 <http://ex.org/o/> ?o .
             ?s <http://ex.org/label> ?sLabel .
             ?o <http://ex.org/label> ?oLabel .
}
         """, initNs={'cn': CN_BASE})
print(r.serialize(format='txt').decode())

# Construct a new graph:

r = g.query("""
         CONSTRUCT {
             ?s ?p ?o .
             ?s <http://ex.org/label> ?sLabel .
             ?o <http://ex.org/label> ?oLabel .
         } WHERE {
             ?edge <http://ex.org/s/> ?s ;
                   <http://ex.org/p/> ?p ;
                   <http://ex.org/o/> ?o .
             ?s <http://ex.org/label> ?sLabel .
             ?o <http://ex.org/label> ?oLabel .
}
         """, initNs={'cn': CN_BASE})

print(r.graph.serialize(format='ttl'))