vote up 10 vote down star
5

Imagine this directory structure:

app/
   __init__.py
   sub1/
      __init__.py
      mod1.py
   sub2/
      __init__.py
      mod2.py

I'm coding mod1, and I need to import something from mod2.. How should I do it?
I tried

from ..sub2 import mod2

but I'm getting an "Attempted relative import in non-package"..

I googled around but found only "sys.path manipulation" hacks.. Isn't there a clean way?
Many thanks

Edit: all my init.py's are currently empty
Edit2: I'm trying to do this because sub2 contains classes that are shared across subpackages (sub1, subX...)
Edit3: The behaviour I'm looking for is the same as described in PEP 366 (thanks John B)

flag

I recommend updating your question to make it more clear that you're describing the issue addressed in PEP 366. – John B Sep 16 '08 at 19:36

7 Answers

vote up 13 vote down check

Everyone seems to want to tell you what you should be doing rather than just answering the question.

The problem is that you're running the module as '__main__' by passing the mod1.py as an argument to the interpreter.

From PEP 328:

Relative imports use a module's __name__ attribute to determine that module's position in the package hierarchy. If the module's name does not contain any package information (e.g. it is set to '__main__') then relative imports are resolved as if the module were a top level module, regardless of where the module is actually located on the file system.

In Python 2.6, they're adding the ability to reference modules relative to the main module. PEP 366 describes the change.

link|flag
vote up 0 vote down
def import_path(fullpath):
""" Import a file with full path specification. Allows one to
    import from anywhere, something __import__ does not do. 
"""
path, filename = os.path.split(fullpath)
filename, ext = os.path.splitext(filename)
sys.path.append(path)
module = __import__(filename)
reload(module) # Might be out of date
del sys.path[-1]
return module

I'm using this snippet to import modules from paths, hope that helps

link|flag
I'm using this snippet, combined with the imp module (as explained here [1]) to great effect. [1]: stackoverflow.com/questions/1096216/… – Xiong Chiamiov Jul 16 at 21:20
vote up 0 vote down
main.py
setup.py
app/ ->
    __init__.py
    package_a/ ->
       __init__.py
       module_a.py
    package_b/ ->
       __init__.py
       module_b.py
  1. You run python main.py.
  2. main.py does: import app.package_a.module_a
  3. module_a.py does import app.package_b.module_b

Alternatively 2 or 3 could use: from app.package_a import module_a

That will work as long as you have app in your PYTHONPATH. main.py could be anywhere then.

So you write a setup.py to copy (install) the whole app package and subpackages to the target system's python folders, and main.py to target system's script folders.

link|flag
vote up 0 vote down

On a related note, Python 3 will change the default handling of imports to be absolute by default; relative imports will have to be explicitly specified.

link|flag
vote up -3 vote down

Don't do relative imports. They'll only make your code more fragile. If you do an absolute import as Matej suggested, you'll be less vulnerable to changes in sys.path and changes in file locations.

link|flag
vote up 0 vote down

I think that what you have to ask yourself is:

  • Why i need to do this?
  • Is my package separation well done?

I don't know the context why you want to do it this way. But for me a cleaner design would be to have the following packages structure:

app/
   init.py
   sub1/
      init.py
      mod1.py
      sub12/
           init.py
           mod2.py

Then you only have to do:

from sub12 import mod2
link|flag
I'm sorry, I should've explained why I'm trying to do this.. It's because sub2 contains classes that are shared across subpackages (sub1, subX...) – Joril Sep 16 '08 at 15:09
vote up 3 vote down

Why you even need this? Why you just do not import it as

from app.sub2 import mod2
link|flag
Because I'm trying to import mod2 from inside mod1.. I tried your suggestion but I get a "No module named app.sub2".. I'm sorry, am I missing something? – Joril Sep 16 '08 at 15:05

Your Answer

Get an OpenID
or

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