Here's a very simple example. It has three files:
- pluginsplugin1.py - the plugin. This has to contain a class inherited from IPlugin.
- pluginsplugin1.yapsy-plugin - information about the plugin.
- yapsy-example.py - the main script. This just loads all the plugins it can find in the "plugins" directory, and calls a method on them to prove that they work.
You could add more plugins to the plugins directory, and this script would loop around them all.
There's another more complicated example at http://lateral.netmanagers.com.ar/weblog/posts/BB923.html (archived).
yapsy-example.py
from yapsy.PluginManager import PluginManager
def main():
# Load the plugins from the plugin directory.
manager = PluginManager()
manager.setPluginPlaces(["plugins"])
manager.collectPlugins()
# Loop round the plugins and print their names.
for plugin in manager.getAllPlugins():
plugin.plugin_object.print_name()
if __name__ == "__main__":
main()
pluginsplugin1.py
from yapsy.IPlugin import IPlugin
class PluginOne(IPlugin):
def print_name(self):
print "This is plugin 1"
pluginsplugin1.yapsy-plugin
[Core]
Name = Plugin 1
Module = plugin1
[Documentation]
Author = John Smith
Version = 0.1
Website = http://lotsofplugins.com
Description = My first plugin
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…