from utils.Logger import Log from plugins.example_1 import Plugin as example1 class Plugin: def __init__(self): self.version = "1.0.0" self.name = "Example - Call Other Plugin" def on_start(self, *args, **kwargs): Log.v("="*10) Log.v("") Log.v("Hello, this is \"Example - Call Other Plugin!\"") Log.v("This plugin will call example_1's \"demo\" function with arguments.") Log.v("") Log.v("="*10) example1().demo(1,2,3, a=2)