up vote 90 down vote favorite
47
share [g+] share [fb]

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 option.

link|improve this question

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
Check my answer, it is the most complete so far, others are not working in special case, for example when you call the script from another directory or from another python script. See stackoverflow.com/questions/279237/… – sorin May 26 '11 at 6:17
feedback

15 Answers

up vote 31 down vote accepted

Assuming that both your directories are real python packages (do have the __init__.py file inside them), here is a safe solution for inclusion of modules relatively to the location of the script.

I assume that you want to do this because you need to include a set of modules with your script. I use this in production in several products and works in many special scenarios like: scripts called from another directory or executed with python execute instead of opening a new interpreter.

 import os, sys, inspect
 # cmd_folder = os.path.dirname(os.path.abspath(__file__)) # DO NOT USE __file__ !!!
 # __file__ fails if script is called in different ways on Windows
 # __file__ fails if someone does os.chdir() before
 # sys.argv[0] also fails because it doesn't not always contains the path
 cmd_folder = os.path.abspath(os.path.split(inspect.getfile( inspect.currentframe() ))[0])
 if cmd_folder not in sys.path:
     sys.path.insert(0, cmd_folder)

As a bonus, this approach does let you force Python to use your module instead of the ones installed on the system.

Warning! I don't really know what is happening when current module is inside an egg file. Probably it fails too. Add a comment if you really need a better solution, I may invest few more hours in improving it.

link|improve this answer
Awesome, thanks very much... very handy. – womp May 26 '11 at 6:05
Perfect solution. Thank you. – Czarek Nov 22 '11 at 23:29
can I get an explanation as to how this works? I've got a similar problem and I'd LOVE to force a python module DIR instead of running a search – delinquentme Jan 15 at 12:53
Running Win 7 Pro 64x and Python 2.7 I get a few errors. 1) I had to add inspect to the import list. 2) The 1st value, [0], in the tuple is an empty string. The 2nd, [1], shows the file name. I am guessing that the first should be the path... Any ideas? – Adam Lewis Jan 17 at 5:38
@AdamLewis Thanks for the bug report, I solved it. – sorin Jan 17 at 16:22
feedback

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

link|improve this answer
33  
Note that this file can be completely empty. – Harley Holcombe Nov 10 '08 at 22:00
2  
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
-1, adding __init.py__ will work only when directory is already in sys.path and in my case it wasn't. Solution by "sorin" (accepted one) always works. – Czarek Nov 22 '11 at 23:27
"when directory is already in sys.path". While totally true, how could we guess that the directory was not in sys.path from the question? Perhaps there was something omitted that we didn't see or know about? – S.Lott Nov 23 '11 at 0:47
feedback

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|improve this answer
2  
It looks that your answer does not work with relative paths, see stackoverflow.com/questions/279237/… – bogdan May 23 '11 at 14:03
feedback

(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|improve this answer
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
feedback

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|improve this answer
Note that in the documentation imp.load_source and imp.load_compiled are listed as obsolete. imp.find_module and imp.load_module are recommended instead. – amicitas Oct 18 '11 at 6:39
feedback

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|improve this answer
6  
Relative import doesn't work in non-package. – J.F. Sebastian Nov 10 '08 at 22:46
feedback

Just do Simple Things to import py file from different folder-

Let's you have a directory like-

lib/abc.py

Then just keep a empty file in lib folder as named

__init__.py

and then use

from lib.abc import <Your Module name>

Keep __init__.py file in every folder of hierarchy of import module

link|improve this answer
feedback

Add an _init_.py file:

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

Then add this code to the start of Foo.py:

import sys
sys.path.append('dirBar')
import Bar
link|improve this answer
1  
If dirBar is already a Python package (by the existence of dirBar/__init__.py), there is no need to append dirBar to sys.path, no? The statement import Bar from Foo.py should suffice. – Santa Apr 18 '10 at 23:06
feedback

In my opinion the best choice is to put __ init __.py in the folder and call the file with

from dirBar.Bar import *

It is not recommended to use sys.path.append() because something might gone wrong if you use the same file name as the existing python package. I haven't test that but that will be ambiguous.

link|improve this answer
weird that from dirBar.Bar import * works, but not from dirBar.Bar import Bar. do you know why * works? what if I had multiple files in dirBar/ and wanted to grab only a few of them (using a method like the one you've posted here)? – tester Jun 24 '11 at 7:33
feedback

Why don't do ?

import os, sys
lib_path = os.path.abspath('../../../lib')
sys.path.append(lib_path)

import mymodule
link|improve this answer
I like this because you have the flexibility to go up a directory. – Charles L. Aug 10 '11 at 21:55
feedback

Look at the pkgutil module from the standard library. It may help you do what you want.

link|improve this answer
feedback
from .dirBar import Bar

instead of:

from dirBar improt Bar

just in case there could be another dirBar installed and confuse a foo.py reader.

link|improve this answer
feedback

Call me overly cautious but I like to make mine more portable because it's unsafe to assume that files will always be in the same place on every computer. Personally I have the code look up the file path first. I use linux so mine would look like this:

import os, sys
from subprocess import Popen, PIPE
try:
    path = Popen("find / -name 'file' -type f", shell=True, stdout=PIPE).stdout.read().splitlines()[0]
    if not sys.path.__contains__(path):
        sys.path.append(path)
except IndexError:
    raise RuntimeError("You must have FILE to run this program!")

That is of course unless you plan to package these together. But if that's the case you don't really need two separate files anyway.

link|improve this answer
feedback

I had a similar problem and I found this and it works!!

apt-get install python-profiler

link|improve this answer
feedback

Here's a way to import a file from one level above, using the relative path.

Basically, just move the working directory up a level (or any relative location), add that to your path, then move the working directory back where it started.

#to import from one level above:
cwd = os.getcwd()
os.chdir("..")
below_path =  os.getcwd()
sys.path.append(below_path)
os.chdir(cwd)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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