Hello,
After running
import owlready2 as owl
#%% load cl
clIRI = "http://purl.obolibrary.org/obo/cl.owl"
clSQL = r'C:\temp\cl2.sqlite3'
#%%
# load from web
cl = owl.get_ontology(clIRI).load()
#%%
owl.default_world.set_backend(filename = clSQL)
owl.default_world.save()
The following results in an error:
import owlready2 as owl
#%% load cl
clIRI = "http://purl.obolibrary.org/obo/cl.owl"
clSQL = r'C:\temp\cl2.sqlite3'
#%% load from local sql copy
my_world = owl.World(filename = clSQL)
cl2 = my_world.get_ontology(clIRI).load()
Am I doing somthing wrong here? Since
http://www.lesfleursdunormal.fr/static/_downloads/pizza_onto.owldoes not result in any issue I am more afraid that the CL onto is the problem though...
Cheers,
GP