Finding a file in a Python module distribution - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T18:03:38Z http://stackoverflow.com/feeds/question/39104 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/39104/finding-a-file-in-a-python-module-distribution 3 Finding a file in a Python module distribution Paul 2008-09-02T09:40:26Z 2009-01-08T08:59:44Z <p>I've written a Python package that includes a bsddb database of pre-computed values for one of the more time-consuming computations. For simplicity, my setup script installs the database file in the same directory as the code which accesses the database (on Unix, something like /usr/lib/python2.5/site-packages/mypackage/).</p> <p>How do I store the final location of the database file so my code can access it? Right now, I'm using a hack based on the <strong>file</strong> variable in the module which accesses the database:</p> <pre> dbname = os.path.join(os.path.dirname(__file__), "database.dat") </pre> <p>It works, but it seems... hackish. Is there a better way to do this? I'd like to have the setup script just grab the final installation location from the distutils module and stuff it into a "dbconfig.py" file that gets installed alongside the code that accesses the database.</p> http://stackoverflow.com/questions/39104/finding-a-file-in-a-python-module-distribution/39295#39295 3 Answer by davidg for Finding a file in a Python module distribution davidg 2008-09-02T11:43:45Z 2008-09-02T11:43:45Z <p>That's probably the way to do it, without resorting to something more advanced like using setuptools to install the files where they belong.</p> <p>Notice there's a problem with that approach, because on OSes with real a security framework (UNIXes, etc.) the user running your script might not have the rights to access the DB in the system directory where it gets installed.</p> http://stackoverflow.com/questions/39104/finding-a-file-in-a-python-module-distribution/39659#39659 2 Answer by Aaron Maenpaa for Finding a file in a Python module distribution Aaron Maenpaa 2008-09-02T14:26:07Z 2008-09-02T14:26:07Z <p>Try using pkg_resources, which is part of setuptools (and available on all of the pythons I have access to right now):</p> <pre><code>&gt;&gt;&gt; import pkg_ resources &gt;&gt;&gt; pkg_ resources.resource_ filename(_ _name_ _, "foo.config") 'foo.config' &gt;&gt;&gt; pkg_ resources.resource_ filename('tempfile', "foo.config") '/usr/lib/python2.4/foo.config' </code></pre> <p>There's more discussion about using pkg_resources to get resources on the <a href="http://peak.telecommunity.com/DevCenter/PythonEggs#accessing-package-resources" rel="nofollow">eggs</a> page and the <a href="http://peak.telecommunity.com/DevCenter/PkgResources" rel="nofollow">pkg_resources</a> page.</p> <p>Also note, where possible it's probably advisable to use pkg_resources.resource_stream or pkg_resources.resource_string because if the package is part of an egg, resource_filename will copy the file to a temporary directory.</p>