Adding code to __init__.py - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T07:04:49Zhttp://stackoverflow.com/feeds/question/119167http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/119167/adding-code-to-init-py6Adding code to __init__.pyErik2008-09-23T04:41:18Z2008-09-24T11:02:55Z
<p>I'm taking a look at how the model system in django works and I noticed something that I don't understand.</p>
<p>I know that you create an empty <code>__init__.py</code> file to specify that the current directory is a package. And that you can set some variable in <code>__init__.py</code> so that import * works properly.</p>
<p>But django adds a bunch of from ... import ... statements and defines a bunch of classes in <code>__init__.py</code>. Why? Doesn't this just make things look messy? Is there a reason that requires this code in <code>__init__.py</code>?</p>
http://stackoverflow.com/questions/119167/adding-code-to-init-py/119178#11917810Answer by Alexander Kojevnikov for Adding code to __init__.pyAlexander Kojevnikov2008-09-23T04:47:51Z2008-09-23T07:05:38Z<p>All imports in <code>__init__.py</code> are made available when you import the package (directory) that contains it.</p>
<p>Example:</p>
<p><code>./dir/__init__.py</code>:</p>
<pre><code>import something
</code></pre>
<p><code>./test.py</code>:</p>
<pre><code>import dir
# can now use dir.something
</code></pre>
<p>EDIT: forgot to mention, the code in <code>__init__.py</code> runs the first time you import any module from that directory. So it's normally a good place to put any package-level initialisation code.</p>
<p>EDIT2: dgrant pointed out to a possible confusion in my example. In <code>__init__.py</code> <code>import something</code> can import any module, not necessary from the package. For example, we can replace it with <code>import datetime</code>, then in our top level <code>test.py</code> both of these snippets will work:</p>
<pre><code>import dir
print dir.datetime.datetime.now()
</code></pre>
<p>and</p>
<pre><code>import dir.some_module_in_dir
print dir.datetime.datetime.now()
</code></pre>
<p>The bottom line is: all names assigned in <code>__init__.py</code>, be it imported modules, functions or classes, are automatically available in the package namespace whenever you import the package or a module in the package.</p>
http://stackoverflow.com/questions/119167/adding-code-to-init-py/119346#1193466Answer by dgrant for Adding code to __init__.pydgrant2008-09-23T06:12:15Z2008-09-24T04:47:03Z<p>It's just personal preference really, and has to do with the layout of your python modules.</p>
<p>Let's say you have a module called <code>erikutils</code>. There are two ways that it can be a module, either you have a file called <em>erikutils.py</em> on your <code>sys.path</code> or you have a directory called <em>erikutils</em> on your <code>sys.path</code> with an empty <em><code>__init__.py</code></em> file inside it. Then let's say you have a bunch of modules called <code>fileutils</code>, <code>procutils</code>, <code>parseutils</code> and you want those to be sub-modules under <code>erikutils</code>. So you make some .py files called <em>fileutils.py</em>, <em>procutils.py</em>, and <em>parseutils.py</em>:</p>
<pre><code>erikutils
__init__.py
fileutils.py
procutils.py
parseutils.py
</code></pre>
<p>Maybe you have a few functions that just don't belong in the <code>fileutils</code>, <code>procutils</code>, or <code>parseutils</code> modules. And let's say you don't feel like creating a new module called <code>miscutils</code>. AND, you'd like to be able to call the function like so:</p>
<pre><code>erikutils.foo()
erikutils.bar()
</code></pre>
<p>rather than doing</p>
<pre><code>erikutils.miscutils.foo()
erikutils.miscutils.bar()
</code></pre>
<p>So because the <code>erikutils</code> module is a directory, not a file, we have to define it's functions inside the <em><code>__init__.py</code></em> file.</p>
<p>In django, the best example I can think of is <code>django.db.models.fields</code>. ALL the django *Field classes are defined in the <em><code>__init__.py</code></em> file in the <em>django/db/models/fields</em> directory. I guess they did this because they didn't want to cram everything into a hypothetical <em>django/db/models/fields.py</em> model, so they split it out into a few submodules (<em>related.py</em>, <em>files.py</em>, for example) and they stuck the made *Field definitions in the fields module itself (hence, <em><code>__init__.py</code></em>).</p>
http://stackoverflow.com/questions/119167/adding-code-to-init-py/126499#1264991Answer by nikow for Adding code to __init__.pynikow2008-09-24T11:02:55Z2008-09-24T11:02:55Z<p>Using the <code>__init__.py</code> file allows you to make the internal package structure invisible from the outside. If the internal structure changes (e.g. because you split one fat module into two) you only have to adjust the <code>__init__.py</code> file, but not the code that depends on the package. You can also make parts of your package invisible, e.g. if they are not ready for general usage.</p>
<p>Note that you can use the <code>del</code> command, so a typical <code>__init__.py</code> may look like this:</p>
<pre><code>from somemodule import some_function1, some_function2, SomeObject
del somemodule
</code></pre>
<p>Now if you decide to split <code>somemodule</code> the new <code>__init__.py</code> might be:</p>
<pre><code>from somemodule1 import some_function1, some_function2
from somemodule2 import SomeObject
del somemodule1
del somemodule2
</code></pre>
<p>From the outside the package still looks exactly as before.</p>