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 archi
Is there not an other way to create a fast addon system?
A module or something like that
--
http://mail.python.org/mailman/listinfo/python-list
On Fri, 2010-05-21 at 08:50 -0700, timo verbeek wrote:
> What is the easiest way in python to create a addon system?
> I found to easy ways:
> * using a import system like this:
>for striper in stripers:
> if striper["enabled"]:
> exec("from strip import %s as _x"%stripe
On Fri, May 21, 2010 at 5:50 PM, timo verbeek wrote:
> What is the easiest way in python to create a addon system?
> I found to easy ways:
> * using a import system like this:
> for striper in stripers:
> if striper["enabled"]:
> exec("from strip import %s as _x"%striper["s
What is the easiest way in python to create a addon system?
I found to easy ways:
* using a import system like this:
for striper in stripers:
if striper["enabled"]:
exec("from strip import %s as _x"%striper["striper"])
string = _x.start(string)
* using exec