Re: Plugin architecture

2010-02-15 Thread Florian Ludwig
Hi mk, On Mon, 2010-02-15 at 19:43 +0100, mk wrote: > Hello everyone, > > I'm thinking about writing plugin-style architecture for (a new) > web-based app (with SQLAlchemy as backend). > > [...] > > How would you approach designing such architecture using features > available in Python (and som

Re: Plugin architecture

2010-02-15 Thread Daniel Fetchinson
> I'm thinking about writing plugin-style architecture for (a new) > web-based app (with SQLAlchemy as backend). > > Say, there's core web app and someone decides to write plugin Accounting > for this web app that would work with SQA objects of the core app or > other plugins. > > I found this: > >

Re: "Plugin" architecture - how to do?

2007-06-04 Thread anglozaxxon
On Apr 10, 10:26 pm, c james <[EMAIL PROTECTED]> wrote: > Take a look at Trac. This might give you some ideas. > > http://trac.edgewall.org/wiki/TracDev/ComponentArchitecture Thanks cJames, that's exactly what I'm looking for. -- http://mail.python.org/mailman/listinfo/python-list

Re: "Plugin" architecture - how to do?

2007-04-10 Thread c james
Take a look at Trac. This might give you some ideas. http://trac.edgewall.org/wiki/TracDev/ComponentArchitecture -- http://mail.python.org/mailman/listinfo/python-list

Re: "Plugin" architecture - how to do?

2007-04-09 Thread anglozaxxon
On Apr 6, 9:59 am, "Nate Finch" <[EMAIL PROTECTED]> wrote: > On Apr 5, 10:57 am, [EMAIL PROTECTED] wrote: > > > I'm making a program that consists of a main engine + plugins. Both > > are in Python. My question is, how do I go about importing arbitrary > > code and have it be able to use the engi

Re: "Plugin" architecture - how to do?

2007-04-06 Thread Nate Finch
On Apr 5, 10:57 am, [EMAIL PROTECTED] wrote: > I'm making a program that consists of a main engine + plugins. Both > are in Python. My question is, how do I go about importing arbitrary > code and have it be able to use the engine's functions, classes, etc? For a true plugin architecture, you do