python: import a module from a folder - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T17:12:20Zhttp://stackoverflow.com/feeds/question/279237http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder14python: import a module from a folderBlinkyhttp://stackoverflow.com/users/13882008-11-10T21:28:48Z2010-02-28T20:34:59Z
<p>How do I import a python module given its relative path?</p>
<p>For example, if dirFoo contains Foo.py and dirBar, and dirBar contains Bar.py, how do I import Bar.py into Foo.py?</p>
<p>Here's a visual representation:</p>
<pre><code>dirFoo\
Foo.py
dirBar\
Bar.py
</code></pre>
<p>Foo wishes to include Bar, but restructuring the folder heirarchy is not an option.</p>
http://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder/279253#27925311Answer by S.Lott for python: import a module from a folderS.Lotthttp://stackoverflow.com/users/106612008-11-10T21:33:33Z2008-11-10T21:33:33Z<p>Be sure that dirBar has the <code>__init__.py</code> file -- this makes a directory into a Python package.</p>
http://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder/279287#27928710Answer by bouvard for python: import a module from a folderbouvardhttp://stackoverflow.com/users/246082008-11-10T21:46:04Z2008-11-10T22:15:59Z<p>(This is from memory so someone edit if I make a typo, please.)</p>
<p>If you structure your project this way:</p>
<pre><code>src\
__init__.py
main.py
dirFoo\
__init__.py
Foo.py
dirBar\
__init__.py
Bar.py
</code></pre>
<p>Then from Foo.py you should be able to do:</p>
<pre><code>import dirFoo.Foo
</code></pre>
<p>Or:</p>
<pre><code>from dirFoo.Foo import FooObject
</code></pre>
<p><strong>EDIT 1:</strong></p>
<p>Per Tom's comment, this does require that the <code>src</code> folder is accessible either via <code>site_packages</code> or your search path. Also, as he mentions, <code>__init__.py</code> is implicitly imported when you first import a module in that package/directory. Typically <code>__init__.py</code> is simply an empty file.</p>
http://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder/279338#2793386Answer by Andrew Cox for python: import a module from a folderAndrew Coxhttp://stackoverflow.com/users/279072008-11-10T22:04:27Z2008-11-10T23:33:55Z<p>You could also add the sub directory to your python path so that it imports as a normal script.</p>
<pre><code>import sys
sys.path.append( <path to dirFoo> )
import Bar
</code></pre>
http://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder/279389#2793896Answer by Peter Crabtree for python: import a module from a folderPeter Crabtreehttp://stackoverflow.com/users/362832008-11-10T22:22:47Z2008-11-10T22:22:47Z<p>This is the relevant PEP:</p>
<p><a href="http://www.python.org/dev/peps/pep-0328/" rel="nofollow">http://www.python.org/dev/peps/pep-0328/</a></p>
<p>In particular, presuming dirFoo is a directory up from dirBar...</p>
<p>In dirFoo\Foo.py:</p>
<pre><code>from ..dirBar import Bar
</code></pre>
http://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder/282778#2827783Answer by monkut for python: import a module from a foldermonkuthttp://stackoverflow.com/users/247182008-11-12T01:56:51Z2008-11-12T01:56:51Z<p>The easiest method is to use sys.path.append().</p>
<p>However, you may be also interested in the <a href="http://docs.python.org/library/imp.html?highlight=imp#module-imp" rel="nofollow">imp</a> module.
It provides access to internal import functions.</p>
<pre><code># 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
</code></pre>
<p>This can be used to load modules dynamically when you don't know a module's name.</p>
<p>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.</p>
<p>Also, these functions may be useful:</p>
<pre><code>imp.find_module(name[, path])
imp.load_module(name, file, pathname, description)
</code></pre>
http://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder/2352563#23525631Answer by Josh for python: import a module from a folderJoshhttp://stackoverflow.com/users/2832482010-02-28T20:34:59Z2010-02-28T20:34:59Z<p>Add an <strong>_<em>init</em>_.py</strong> file:</p>
<pre><code>dirFoo\
Foo.py
dirBar\
__init__.py
Bar.py
</code></pre>
<p>Then add this code to the start of Foo.py:</p>
<pre><code>import sys
sys.path.append('dirBar')
import Bar.py
</code></pre>