I have a simple Python import question. I have a module (let's call it A) that is importing a module B. Module B imports a lot of other modules C, D, E, F, etc. I want module A to be able to use the modules C, D, E, F, etc. Is there an easy way to do this? I don't want to directly import C, D, E, F, etc from A.
What I'm trying to accomplish is to provide an API to script developers, who write module A. So, I wanted module A only to have to include module B which is the main entry point to the API and imports all the modules in the API.
BinA, you can access the modules imported inBusing the usual dot notation:B.C,B.D, etc. Is this what you are looking for? – Sven Marnach Aug 10 '12 at 17:50from B import *! – moooeeeep Aug 10 '12 at 17:52