owlready2 icon indicating copy to clipboard operation
owlready2 copied to clipboard

Results 37 owlready2 issues
Sort by recently updated
recently updated
newest added

When importing an additional ``` onto = get_ontology("my_ontology.owl").load() list(onto.classes()) ... classes of onto are listed # check imported ontologies - should be empty onto.imported_ontologies >> [] another_onto = get_ontology("my_other_ontology.owl").load() list(onto.classes())...

http://owlready.8326.n8.nabble.com is mentioned in the readme as the mailing list; it seems to be offline

This code: ``` import os from owlready2 import onto_path from owlready2 import get_ontology onto_path.append(os.getcwd()) onto = get_ontology('http://purl.obolibrary.org/obo/bto.owl') print(onto.search(subclass_of = 'obo.BTO_0000042')) ``` Gives this error: `AttributeError: 'str' object has no attribute...

Hello I'm testing owlready2 which seems interesting. But, I'm encoutering problem with the loading phase of one of my files with `senneville_ontology= get_ontology("file://c://wamp64/www/barbules/ontologies/test.nt").load()` where test.nt contains only one line `...

**Context:** I have an ontology (.owl file) to which I added SWRL rules using the SWRL Plugin in the Protege editor. I have two queries: 1. Can the data property...

Hi, I often encounter the problem when loading the ontology either from website or local disk when using the owlready2. They said something happening/parsing error in some lines of my...

Hello, thanks for providing SNOMED-CT access via owlready2! In the SNOMED-CT documentation it is mentioned, that each relationship has a defined domain and range: https://confluence.ihtsdotools.org/display/DOCEG/Structure+of+Domain+Coverage ![grafik](https://github.com/pwin/owlready2/assets/16795915/8d1a9250-6ad1-4b73-a579-24f1c680d422) For instance for the...

Please see this issue, https://github.com/protegeproject/swrlapi/issues/25 I am facing a similar issue where i have to use an object_property (let's assume hasQuality) of an imported ontology, but when I try to...

If the ontology file is big, the multiprocessing is not working. ![load-ontology](https://user-images.githubusercontent.com/61488260/234267901-f04edcb8-ef3a-4881-8c7f-2d16584e2a0c.png)

Hello, I have successfully defined a new datatype using owlready2, with a parser and unparser function. But when I try to read the .owl file, this raise an error :...