Hi, Jiba,
I wanna search in my world the classes (only the classes) that have a dynamic word inside its labels, so i am doing this
labels = default_world.search(label="*" + word + "*", _case_sensitive=False)
but it finds also properties and other stufs.
can i do something like this:
labels = default_world.search(label="*" + word + "*", type="
http://www.w3.org/2002/07/owl#Class", _case_sensitive=False)
or this:
labels = default_world.search(label="*" + word + "*", type= owl.Class, _case_sensitive=False)
labels = default_world.search(label="*" + word + "*", type= owl.Thing, _case_sensitive=False)
please, don't ignore me again ( u.u)