Skolemizer library¶
A library with utils for performing Skolemization on blank nodes (RDF)
Installation¶
To install the skolemizer package, run this command in your terminal:
$ pip install skolemizer
Usage¶
This package can be used like this:
from skolemizer import Skolemizer
# Adding skolemization to a graph node
if not getattr(self, "identifier", None):
self.identifier = Skolemizer.add_skolemization()