Re: How to use .instances() method to iterate through all Instances of owl:Thing in owlready2?

Posted by Jiba on
URL: http://owlready.306.s1.nabble.com/How-to-use-instances-method-to-iterate-through-all-Instances-of-owl-Thing-in-owlready2-tp2663p2674.html

Hi,

Normally, Protégé automatically declare individuals as NamedIndividuals, as in the following RDF/XML example:

   

    <owl:NamedIndividual rdf:about="http://www.semanticweb.org/jiba/ontologies/2021/9/untitled-ontology-58#x">
        <rdf:type rdf:resource="http://www.semanticweb.org/jiba/ontologies/2021/9/untitled-ontology-58#C"/>
    </owl:NamedIndividual>

The owl:NamedIndividual tag implies that the instance is a NamedIndividual.

Jiba