from lems.model.model import Model
from pyneuroml.utils import extract_lems_definition_files
lems_def_dir = extract_lems_definition_files()
model = Model(include_includes=True, fail_on_missing_includes=True)
model.add_include_directory(lems_def_dir)
model.import_from_file("./LEMS_test_Golgi_cells_default_1234.xml")
The lems file refers to a network file which refers to cells in subdirectories, those cells refer to channels in a channel directory.
Needs looking into.