Relative file paths in Python packages - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T21:44:51Zhttp://stackoverflow.com/feeds/question/1011337http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1011337/relative-file-paths-in-python-packages1Relative file paths in Python packagesAlex2009-06-18T07:51:23Z2009-06-18T08:33:57Z
<p>How do I reference a file relatively to a package's directory?</p>
<p>My directory structure is:</p>
<pre>
/foo
package1/
resources/
__init__.py
package2/
resources/
__init__.py
script.py
</pre>
<p><code>script.py</code> imports packages <code>package1</code> and <code>package2</code>. Although the packages can be imported by any other script on the system. How should I reference resources inside, say, <code>package1</code> to ensure it would work in case <code>os.path.curdir</code> is arbitrary?</p>
http://stackoverflow.com/questions/1011337/relative-file-paths-in-python-packages/1011366#10113661Answer by Alex Morega for Relative file paths in Python packagesAlex Morega2009-06-18T08:00:44Z2009-06-18T08:00:44Z<p>If you want to reference files from the <code>foo/package1/resources</code> folder you would want to use the <code>__file__</code> variable of the module. Inside <code>foo/package1/__init__.py</code>:</p>
<pre><code>from os import path
resources_dir = path.join(path.dirname(__file__), 'resources')
</code></pre>
http://stackoverflow.com/questions/1011337/relative-file-paths-in-python-packages/1011435#1011435-1Answer by Alexander Artemenko for Relative file paths in Python packagesAlexander Artemenko2009-06-18T08:20:28Z2009-06-18T08:20:28Z<p>This is a bad idea, because, if your package was installed as zipped egg, then resources can be unavailable.</p>
<p>If you use setuptool, don't forget to add zip_safe=False to the setup.py config.</p>
http://stackoverflow.com/questions/1011337/relative-file-paths-in-python-packages/1011491#10114910Answer by Glyph for Relative file paths in Python packagesGlyph2009-06-18T08:33:57Z2009-06-18T08:33:57Z<p>You can be zip-safe and at the same time use a nice convenient API if you use <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.python.modules.html" rel="nofollow">twisted.python.modules</a>.</p>
<p>For example, if I have a <code>data.txt</code> with some text in it and and this <code>sample.py</code> in one directory:</p>
<pre><code>from twisted.python.modules import getModule
moduleDirectory = getModule(__name__).filePath.parent()
print repr(moduleDirectory.child("data.txt").open().read())
</code></pre>
<p>then importing <code>sample</code> will do this:</p>
<pre><code>>>> import sample
'Hello, data!\n'
>>>
</code></pre>
<p>If your module is in a regular directory, <code>getModule(__name__).filePath</code> will be a <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.python.filepath.FilePath.html" rel="nofollow">FilePath</a>; if it's in a zip file, it will be a <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.python.zippath.ZipPath.html" rel="nofollow">ZipPath</a>, which supports most, but not all, of the same APIs.</p>