creating addon system

Christian Heimes lists at cheimes.de
Sat May 22 09:55:25 EDT 2010


Am 22.05.2010 12:06, schrieb timo verbeek:
> Is there not an other way to create a fast addon system?
> A module or something like that

How fancy are your requirements? People have written numerous plugin 
systems, from simple to use ones like CherryPy's tool system up to a 
complex component architecture like zope.component.

I recommend against exec() and execfile(). It makes debugging and 
testing harder and it has security concern, too.

Christian




More information about the Python-list mailing list