How to write python plug-ins for your own python program?

Simon Wittber simonwittber at gmail.com
Thu Mar 3 03:33:55 EST 2005


> You mean like 'import'? :)

That's how I would do it. It's the simplest thing, that works.

exec("import %s as plugin" % pluginName)
plugin.someMethod()

where pluginName is the name of the python file, minus the ".py" extension.

Sw.



More information about the Python-list mailing list