views:

47

answers:

3

I'm discovering python, and I want to create a plug in application, I guess this is simple using python, but it will be nice create a generic start point application.

To be more specific, it could be a file.py that reads a XML or INI file to get the plug in's directory path, then load all .py files as plug in

Any Ideas?

A: 

I guess this depends on your level of "simple", but trac has a nice plug-in framework.

http://trac.edgewall.org/wiki/TracDev/ComponentArchitecture

Brian Clements