Hey everyone,
While I'm familiar with making .net assemblies with the PythonModule assembly attribute, I'm a little curious as to how you could make submodules. Would this be a class within a class? i.e: if I have a class defined as an IronPython module such as:
[assembly: PythonModule(mymodule),typeof(namespace.mymodule)]
How could I define a submodule within mymodule
, so that from python I could do:
import mymodule.submodule
Thanks in advance!