Plugin
Base class for Louie plugins.
The Plugin class is accessible via the louie.plugin module.
Plugins are used to extend or alter the behavior of Louie in a uniform way without having to modify the Louie code itself.
Methods
f is_live(self, receiver) ...
Return True if the receiver is still live.
Only called for receivers who have already been determined to be live by default Louie semantics.
f wrap_receiver(self, receiver) ...
Return a callable that passes arguments to the receiver.
Useful when you want to change the behavior of all receivers.
See the source for more information.