I have embedded in a LO document a python Library named TheEmbeddedLibrary with two python modules named: Modulewithfunctions and Modulewithclasses
If these were user or shared modules, importing from one to another is done by just issuing:
from Modulewithclasses import myfirstclass
(assuming they are in the same directory)
But when these modules are embedded in the document this no longer works.
Neither TheEmbeddedLibrary.Modulewithclasses works.
For the moment I included all in one big module, but is there any other way to import a class from that second module?