Hello,
I am slowly feeling like the messenger of bad news, hope nobody will shoot me!
Some older script of mine started to make problems recently (basically the program crashes), I could boil down the problem to the following lines:
import owlready2 as owl
clIRI = "http://purl.obolibrary.org/obo/cl.owl"
cl = owl.get_ontology(clIRI).load()
hasExactSynonym = cl.search_one(label='has_exact_synonym')
allSynonyms = {el[1]:el[0] for el in hasExactSynonym.get_relations()}
When I replace the github repo with some cached version of the CL onto I have on my system, the problem disappears, so I suspect there was a recent update of the CL onto which causes the problem.
This is with owlready2 0.15 and 0.16
Let me know if I can help further...
GP