Skip to content

Instantly share code, notes, and snippets.

@kasei
Last active June 4, 2019 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kasei/294708b043479cb87e0d801e7b7f1f08 to your computer and use it in GitHub Desktop.
Save kasei/294708b043479cb87e0d801e7b7f1f08 to your computer and use it in GitHub Desktop.
Bug in RDFLib JSON-LD code that drops embedded blank nodes
#!/usr/bin/env python3
from rdflib.serializer import Serializer
from rdflib import Graph, URIRef, BNode, Literal
from rdflib.namespace import FOAF, DCTERMS
g = Graph()
spatial = BNode()
g.add((URIRef('http://example.org/thing'), DCTERMS.spatial, spatial))
g.add((spatial, FOAF.name, Literal('California')))
context = {
'foaf': 'http://xmlns.com/foaf/0.1/',
'dcterms': 'http://purl.org/dc/terms/',
}
### Making this True will omit the `foaf:name "California"` data
SHOW_SERIALIZATION_BUG = False
if SHOW_SERIALIZATION_BUG:
context['dcterms:spatial'] = {'@type': '@id'}
b = g.serialize(format='json-ld', context=context, indent=4)
print(b.decode("utf-8") )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment