Re: Python application extending, plugins

2005-01-09 Thread Kartic
John, To achieve this, your application must define an API that third party coders can use to extend your application. How you define your API is upto you; there are no general "guidelines", AFAIK. But if you want seamless extensibility, it entirely depends on how elegantly you design the API for

Python application extending, plugins

2005-01-07 Thread John Pote
Hi, Has anyone any thoughts on structuring a program so that it can be extended simply and elegantly by a user who only has a compiled (.pyc) version of the application? I wish to write an application, myApp, that provides a GUI to, amongst other things, a simulator implimented as a class. myA