from xtendr.xtendrbase import XtendRBase class ExamplePlugin(XtendRBase): """Example plugin implementation. Example: >>> plugin = ExamplePlugin() >>> plugin.run() ExamplePlugin is running! >>> plugin.stop() ExamplePlugin has stopped! """ def run(self): print("ExamplePlugin is running!") def stop(self): print("ExamplePlugin has stopped!")