You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
505 B
Python
17 lines
505 B
Python
from rdflib import Graph
|
|
from rdflib import RDF, URIRef, Namespace
|
|
XPUB = Namespace("http://xpub.nl/terms/")
|
|
import sys
|
|
|
|
# url = "https://gallery.constantvzw.org/index.php/Maison-des-arts-expo/"
|
|
|
|
# g = Graph()
|
|
# with open("index.rdfa.html") as fin:
|
|
# data = fin.read()
|
|
# g.parse(publicID="index.html", data=data, format="rdfa")
|
|
# # g.parse(file=fin, format="rdfa", override_encoding="utf-8")
|
|
g = Graph()
|
|
g.parse("https://project.xpub.nl/index.rdfa.html", format="rdfa")
|
|
|
|
print (g.serialize())
|