Python

Classes

VoluxOperator

Instantiating a New Operator

import volux
vlx = volux.VoluxOperator()

Note

vlx will serve as the name of the operator instance in the following examples

Adding Modules to an Operator

from voluxdemomodule import VoluxDemoModule
demo_module = VoluxDemoModule()
vlx.add_module()