import uno import unohelper from com.sun.star.task import XJobExecutor import main ID_EXTENSION = 'net.elmau.zaz.pip' SERVICE = ('com.sun.star.task.Job',) class ZAZPip(unohelper.Base, XJobExecutor): def __init__(self, ctx): self.ctx = ctx def trigger(self, option): main.ID_EXTENSION = ID_EXTENSION main.run(__file__) return g_ImplementationHelper = unohelper.ImplementationHelper() g_ImplementationHelper.addImplementation(ZAZPip, ID_EXTENSION, SERVICE)