from IModule import IModule class SampleModule(IModule): """docstring for SampleModule.""" def __init__(self): super(SampleModule, self).__init__() def getCommand(self): return [ "command 1", "command 2" ]