Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am running Python 2.5.

This is my folder tree:

ptdraft/
  nib.py
  simulations/
    life/
      life.py

(I also have __init__.py in each folder, omitted here for readability)

How do I import the nib module from inside the life module? I am hoping it is possible to do without tinkering with sys.path.

(Note: The main module being ran is in the ptdraft folder.)

share|improve this question
1  
What's your PYTHONPATH setting? – S.Lott Apr 3 '09 at 14:18
1  
Ross: I looked there. What should I do about it? I already have a __init__.py. S.Lott: I don't know how to check... – Ram Rachum Apr 3 '09 at 14:42
1  
echo $PYTHONPATH from the shell; import sys; print sys.path from within Python. docs.python.org/tutorial/… – S.Lott Apr 3 '09 at 16:27

4 Answers

up vote 11 down vote accepted

What's wrong with just import ptdraft.nib

Update:

It seems that the problem is not related to the module being in a parent directory or anything like that.

You need to add the directory that contains ptdraft to PYTHONPATH

You said that import nib worked with you, that probably means that you added ptdraft itself (not its parent) to PYTHONPATH.

share|improve this answer
I did try that, it gives: ImportError: No module named ptdraft.nib – Ram Rachum Apr 3 '09 at 14:36
Read the update, I understand. But now I ask: Is it okay that my PYTHONPATH is set up like that? I didn't manually set it up, I'm working with Eclipse. – Ram Rachum Apr 3 '09 at 22:26
Whether it's ok or not depends mostly on you. If you're going to publish this though, I'd say it's not quite ok. I really don't know how to setup the PYTHONPATH in eclipse. – hasen j Apr 4 '09 at 4:01
I don't understand, hasen. Regardless of IDE, I have a folder with a bunch of Python files in it. If I double click the main one from explorer, it's supposed to run properly, isn't it? So who determines the PYTHONPATH in that case? Because the import nib version works when I double click it. – Ram Rachum Apr 4 '09 at 8:22
hmmm .. I guess you could ask that as a new question about setting up PYTHONPATH. – hasen j Apr 4 '09 at 8:27

You could use relative imports (python >= 2.5):

from ... import nib

(What’s New in Python 2.5) PEP 328: Absolute and Relative Imports

EDIT: added another dot '.' to go up two packages

share|improve this answer
3  
This should be the accepted answer – btk Apr 18 at 4:17

Relative imports (as in from .. import mymodule) only work in a package. To import 'mymodule' that is in the parent directory of your current module:

import os,sys
parentdir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
sys.path.insert(0,parentdir) 
import mymodule
share|improve this answer
something a little shorter: sys.path.insert(1, os.path.join(sys.path[0], '..')) – JHolta Apr 22 at 0:55
Any reason to avoid sys.path.append() instead of the insert? – Tyler 2 days ago
@Tyler - It can matter if somewhere else then the parentdir, but in one of the paths allready specified in sys.path, there is another module with the name 'mymodule'. Inserting the parentdir as the first element of the sys.path list assures that the module from parentdir will be imported instead. – Remi 20 hours ago

If add your module folder to the PYTHONPATH didn't work, You can modify the sys.path list in your program where python interpreter searches for the modules to import, the python documentation says:

When a module named spam is imported, the interpreter first searches for a built-in module with that name. If not found, it then searches for a file named spam.py in a list of directories given by the variable sys.path. sys.path is initialized from these locations:

  • the directory containing the input script (or the current directory).
  • PYTHONPATH (a list of directory names, with the same syntax as the shell variable PATH).
  • the installation-dependent default.

After initialization, Python programs can modify sys.path. The directory containing the script being run is placed at the beginning of the search path, ahead of the standard library path. This means that scripts in that directory will be loaded instead of modules of the same name in the library directory. This is an error unless the replacement is intended.

Knowing this, you can do the following in your program:

import sys
# Add the ptdraft folder path to the sys.path list
sys.path.append('/path/to/ptdraft/')

# Now you can import your module
from ptdraft import nib
# Or just
import ptdraft
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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