Python: How to make a cross-module variable? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T10:28:29Zhttp://stackoverflow.com/feeds/question/142545http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/142545/python-how-to-make-a-cross-module-variable5Python: How to make a cross-module variable?Dan Homerick2008-09-26T23:59:47Z2008-09-28T00:40:36Z
<p>The <code>__debug__</code> variable is handy in part because it affects every module. If I want to create another variable that works the same way, how would I do it?</p>
<p>The variable (let's be original and call it 'foo') doesn't have to be truly global, in the sense that if I change foo in one module, it is updated in others. I'd be fine if I could set foo before importing other modules and then they would see the same value for it.</p>
http://stackoverflow.com/questions/142545/python-how-to-make-a-cross-module-variable/142558#1425580Answer by Jon Cage for Python: How to make a cross-module variable?Jon Cage2008-09-27T00:07:43Z2008-09-27T00:07:43Z<p>Okay, turning this on it's head, why do you want a global variable? ..or in other words, there are probably better ways of achieving the solution you're after if you can explain exactly what you want?</p>
http://stackoverflow.com/questions/142545/python-how-to-make-a-cross-module-variable/142561#1425610Answer by awatts for Python: How to make a cross-module variable?awatts2008-09-27T00:08:25Z2008-09-28T00:40:37Z<p>This sounds like modifying the <code>__builtin__</code> name space. To do it:</p>
<pre><code>import __builtin__
__builtin__.foo = 'some-value'
</code></pre>
<p>Do not use the <code>__builtins__</code> directly (notice the extra "s") - apparently this can be a dictionary or a module. Thanks to ΤΖΩΤΖΙΟΥ for pointing this out, more can be found <a href="http://groups.google.com/group/comp.lang.python/browse_thread/thread/1907d5e660444c08/69c29c4ec0c4d3ec" rel="nofollow" title="here">here</a>.</p>
<p>Now <code>foo</code> is available for use everywhere.</p>
<p>I don't recommend doing this generally, but the use of this is up to the programmer.</p>
<p>Assigning to it must be done as above, just setting <code>foo = 'some-other-value'</code> will only set it in the current namespace.</p>
http://stackoverflow.com/questions/142545/python-how-to-make-a-cross-module-variable/142566#1425667Answer by Curt Hagenlocher for Python: How to make a cross-module variable?Curt Hagenlocher2008-09-27T00:09:29Z2008-09-27T00:09:29Z<p>I don't endorse this solution in any way, shape or form. But if you add a variable to the <code>__builtin__</code> module, it will be accessible as if a global from any other module that includes <code>__builtin__</code> -- which is all of them, by default.</p>
<p>a.py contains</p>
<pre><code>print foo
</code></pre>
<p>b.py contains</p>
<pre><code>import __builtin__
__builtin__.foo = 1
import a
</code></pre>
<p>The result is that "1" is printed.</p>
<p><strong>Edit:</strong> The <code>__builtin__</code> module is available as the local symbol <code>__builtins__</code> -- that's the reason for the discrepancy between two of these answers.</p>
http://stackoverflow.com/questions/142545/python-how-to-make-a-cross-module-variable/142581#1425813Answer by hayalci for Python: How to make a cross-module variable?hayalci2008-09-27T00:15:19Z2008-09-27T00:15:19Z<p>Define a module ( call it "globalbaz" ) and have the variables defined inside it. All the modules using this "pseudoglobal" should import the "globalbaz" module, and refer to it using "globalbaz.var_name"</p>
<p>This works regardless of the place of the change, you can change the variable before or after the import. The imported module will use the latest value. (I tested this in a toy example)</p>
<p>For clarification, globalbaz.py looks just like this:</p>
<pre><code>var_name = "my_useful_string"
</code></pre>
http://stackoverflow.com/questions/142545/python-how-to-make-a-cross-module-variable/142601#1426015Answer by J.F. Sebastian for Python: How to make a cross-module variable?J.F. Sebastian2008-09-27T00:25:00Z2008-09-27T07:50:50Z<p>If you need a global cross-module variable maybe just simple global module-level variable will suffice. </p>
<p>a.py:</p>
<pre><code>var = 1
</code></pre>
<p>b.py:</p>
<pre><code>import a
print a.var
import c
print a.var
</code></pre>
<p>c.py:</p>
<pre><code>import a
a.var = 2
</code></pre>
<p>Test:</p>
<pre><code>$ python b.py
# -> 1 2
</code></pre>
<p>Real-world example: <a href="http://code.djangoproject.com/browser/djangoproject.com/django_website/settings.py" rel="nofollow">Django's settings.py</a> (though in Django apps settings are used by importing the <em>object</em> <a href="http://docs.djangoproject.com/en/dev/topics/settings/#using-settings-in-python-code" rel="nofollow"><code>django.conf.settings</code></a>).</p>
http://stackoverflow.com/questions/142545/python-how-to-make-a-cross-module-variable/142669#1426692Answer by spiv for Python: How to make a cross-module variable?spiv2008-09-27T01:03:43Z2008-09-27T01:03:43Z<p>Global variables are usually a bad idea, but you can do this by assigning to <code>__builtins__</code>:</p>
<pre><code>__builtins__.foo = 'something'
print foo
</code></pre>
<p>Also, modules themselves are variables that you can access from any module. So if you define a module called <code>my_globals.py</code>:</p>
<pre><code># my_globals.py
foo = 'something'
</code></pre>
<p>Then you can use that from anywhere as well:</p>
<pre><code>import my_globals
print my_globals.foo
</code></pre>
<p>Using modules rather than modifying <code>__builtins__</code> is generally a cleaner way to do globals of this sort.</p>