Hi,
I am trying to access the owl:versionIRI of an ontology.
The following code prints the storid for all the annotations and imported ontologies of emmo:
from owlready2 import get_ontology
emmo = get_ontology('http://emmo.info/emmo/1.0.0-alpha')
emmo.load()
for triplet in emmo.get_triples(s=emmo.storid):
print(triplet)
One of the triplets `(302, 303, 301)` might correspond to the owl:versionIRI I am looking for. But how do I get the corresponding Python objects for the storid's 301 and 303? I have tried `emmo.world._get_by_storid()`, but that only gives me None.