vote up 12 vote down star
5

How do I import a python module given its relative path?

For example, if dirFoo contains Foo.py and dirBar, and dirBar contains Bar.py, how do I import Bar.py into Foo.py?

Here's a visual representation:

dirFoo\
    Foo.py
    dirBar\
        Bar.py

Foo wishes to include Bar, but restructuring the folder heirarchy is not an optoin.

flag

80% accept rate
Looks like stackoverflow.com/questions/72852/…, maybe? – Joril Nov 10 '08 at 23:44
Good point. I wonder if we should close this? – S.Lott Nov 10 '08 at 23:53

5 Answers

vote up 9 vote down

Be sure that dirBar has the __init__.py file -- this makes a directory into a Python package.

link|flag
1  
Note that this file can be completely empty. – Harley Nov 10 '08 at 22:00
If dirBar's parent directory is not in sys.path then the presence of __init__.py in the dirBar directory doesn't help much. – J.F. Sebastian Nov 10 '08 at 22:40
The above comment assumes that dirBar is a sub-package. – J.F. Sebastian Nov 10 '08 at 23:11
vote up 9 vote down

(This is from memory so someone edit if I make a typo, please.)

If you structure your project this way:

src\
  __init__.py
  main.py
  dirFoo\
    __init__.py
    Foo.py
  dirBar\
    __init__.py
    Bar.py

Then from Foo.py you should be able to do:

import dirFoo.Foo

Or:

from dirFoo.Foo import FooObject

EDIT 1:

Per Tom's comment, this does require that the src folder is accessible either via site_packages or your search path. Also, as he mentions, __init__.py is implicitly imported when you first import a module in that package/directory. Typically __init__.py is simply an empty file.

link|flag
Also mention that init.py is imported when the first module inside that package is imported. Also, your example will only work if src is in the site_packages (or in the search path) – Tom Leys Nov 10 '08 at 22:00
vote up 6 vote down

This is the relevant PEP:

http://www.python.org/dev/peps/pep-0328/

In particular, presuming dirFoo is a directory up from dirBar...

In dirFoo\Foo.py:

from ..dirBar import Bar
link|flag
1  
Relative import doesn't work in non-package. – J.F. Sebastian Nov 10 '08 at 22:46
vote up 6 vote down

You could also add the sub directory to your python path so that it imports as a normal script.

import sys
sys.path.append( <path to dirFoo> )
import Bar
link|flag
vote up 2 vote down

The easiest method is to use sys.path.append().

However, you may be also interested in the imp module. It provides access to internal import functions.

# mod_name is the filename without the .py/.pyc extention
py_mod = imp.load_source(mod_name,filename_path) # Loads .py file
py_mod = imp.load_compiled(mod_name,filename_path) # Loads .pyc file

This can be used to load modules dynamically when you don't know a module's name.

I've used this in the past to create a plugin type interface to an application, where the user would write a script with application specific functions, and just drop thier script in a specific directory.

Also, these functions may be useful:

imp.find_module(name[, path])
imp.load_module(name, file, pathname, description)
link|flag

Your Answer

Get an OpenID
or

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