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.
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
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")
|
|
|
|
|
|
# context = {
|
|
# "@context": {
|
|
# "@vocab": "http://xpub.nl/terms/",
|
|
# "@language": "en",
|
|
# "xpub": "http://xpub.nl/terms/",
|
|
# "xpubproject": "https://project.xpub.nl/",
|
|
# "dc": "http://purl.org/dc/terms/",
|
|
# "student": { "@id": "xpub:student", "@lang": "en" },
|
|
# "project": { "@id": "xpub:project", "@type": "@id" },
|
|
# "thesis": { "@id": "xpub:thesis", "@type": "@id" },
|
|
# "image": {"@id": "dc:image", "@type": "@id" },
|
|
# "title": "dc:title",
|
|
# "date": {"@id": "dc:date", "@type": "http://www.w3.org/2001/XMLSchema#date"},
|
|
# "hasPart": {"@id": "dc:hasPart", "@type": "@id"},
|
|
# "url": {"@id": "@id", "@type": "@id"},
|
|
# "type": {"@id": "@type", "@type": "@id"}
|
|
# }
|
|
# }
|
|
print (g.serialize(format="json-ld", context="https://xpub.nl/contexts/projects.json", auto_compact=True))
|