I am trying to build an ontology tree using owlready2 But i see that owlready2 loads files differently. I have three Owl ontologies in .nt format. A, B ,C Both A, and B have classes which are rdfs:subClassOf classes defined in C
The issue is that parent of every class in A is listed as "C.nt.ClassName1" where as the parent of every class in B is listed as "C.ClassName1". (without ".nt"
Because of this, "Thing" only lists "C.nt.ClassName1" as its child so there is not way for me to traverse to classes of B using "Thing".
Why does owlready creates parent class names in two different ways ?
Please see this link for a detailed example:
https://stackoverflow.com/questions/59844371/nt-in-owlready-parent-class-name