vote up 1 vote down star

I have a structure such this works :

import a.b.c
a.b.c.foo()

and this also works :

from a.b import c
c.foo()

but this doesn't work :

from a import b.c
b.c.foo()

nor does :

from a import b
b.c.foo()

How can I do the import so that b.c.foo() works?

flag

Is there a particular reason why you need the b.c.foo() syntax instead of c.foo() for your code? – Dav Aug 4 at 2:37
yes, the prefix is really long with lots of nested modules, but importing 'c' is a namespace collision. – Paul Tarjan Aug 4 at 2:40
ok, adding to that, assume that it is more semantically correct to write c.foo() so that we can't skirt the problem. – Paul Tarjan Aug 4 at 3:02
1  
namespace collisions are easier to solve with a from a.b import c as b_c and similar renamings. – Alex Martelli Aug 4 at 3:02

4 Answers

vote up 7 vote down check

Just rename it:


from a.b import c as BAR

BAR.foo()
link|flag
see newest comment. but indeed, your solution works. – Paul Tarjan Aug 4 at 3:03
vote up 1 vote down

In your 'b' package, you need to add 'import c' so that it is always accessible as part of b.

link|flag
Then b has to guess all the submodules that you would ever want to use on it? The code is in c, shouldn't there be a better way? – Paul Tarjan Aug 4 at 2:35
vote up 2 vote down
from a import b
from a.b import c
b.c = c
link|flag
isn't that monkeypatching the code? – Paul Tarjan Aug 4 at 2:39
Not sure what "monkeypatching the code" means -- it's monkeypatching module (package) b to remedy the fact that it doesn't, apparently, import its own c sub-module. – Alex Martelli Aug 4 at 3:01
BTW, the intermediate name could also be changed with an as, of course, whether you then monkeypatch it back in as b.c or not. – Alex Martelli Aug 4 at 3:03
vote up 0 vote down
import a.b.c
from a import b
b.c.foo()

The order of the import statements doesn't matter.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.