python: import a module from a folder - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T17:12:20Z http://stackoverflow.com/feeds/question/279237 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder 14 python: import a module from a folder Blinky http://stackoverflow.com/users/1388 2008-11-10T21:28:48Z 2010-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#279253 11 Answer by S.Lott for python: import a module from a folder S.Lott http://stackoverflow.com/users/10661 2008-11-10T21:33:33Z 2008-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#279287 10 Answer by bouvard for python: import a module from a folder bouvard http://stackoverflow.com/users/24608 2008-11-10T21:46:04Z 2008-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#279338 6 Answer by Andrew Cox for python: import a module from a folder Andrew Cox http://stackoverflow.com/users/27907 2008-11-10T22:04:27Z 2008-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( &lt;path to dirFoo&gt; ) import Bar </code></pre> http://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder/279389#279389 6 Answer by Peter Crabtree for python: import a module from a folder Peter Crabtree http://stackoverflow.com/users/36283 2008-11-10T22:22:47Z 2008-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#282778 3 Answer by monkut for python: import a module from a folder monkut http://stackoverflow.com/users/24718 2008-11-12T01:56:51Z 2008-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#2352563 1 Answer by Josh for python: import a module from a folder Josh http://stackoverflow.com/users/283248 2010-02-28T20:34:59Z 2010-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>