X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Flib%2Fplugin.py;h=0523a75f2513e723b692dc77829d651336d77220;hb=40a57f2ddcd2c52318e405383005fe291bd5d9b6;hp=5f709422410754a5be0a3d0dcfbcd5142bd92f22;hpb=6d8430680bdea646cd17f27e3ec58c5f9ee1d629;p=mpd-sima.git diff --git a/sima/lib/plugin.py b/sima/lib/plugin.py index 5f70942..0523a75 100644 --- a/sima/lib/plugin.py +++ b/sima/lib/plugin.py @@ -26,8 +26,8 @@ class Plugin: First non-empty line of the docstring is used as description Rest of the docstring at your convenience. - The plugin Name MUST be the same as the module (file name), case - insensitive: for instance plugin.py → Plugin + The lowercased plugin Name MUST be the same as the module (file name), + for instance Plugin → plugin.py It eases plugins discovery and simplifies the code to handle them, IMHO, it's a fair trade-off. """ @@ -64,6 +64,13 @@ class Plugin: # self.log.debug('Got config for {0}: {1}'.format(self, # self.plugin_conf)) + def start(self): + """ + Called when the daemon().run() is called and + right after the player has connected successfully. + """ + pass + def callback_player(self): """ Called on player changes, stopped, paused, skipped