Getting local dictionary for function scope only in Python - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T07:11:13Zhttp://stackoverflow.com/feeds/question/855259http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/855259/getting-local-dictionary-for-function-scope-only-in-python0Getting local dictionary for function scope only in PythonAlbinofrenchy2009-05-12T22:49:01Z2009-05-13T09:02:09Z
<p>I keep ending up at this situation where I want to use a dictionary very much like the one 'locals' gives back, but that only contains the variables in the limited scope of the function. Is there a way to do this in python? </p>
<p>A bit more about why I want to do this: I'm playing with Django and when I go to give my templates context, I am forced either to either manually make a dictionary (In violation with DRY principles) or pass in locals() which contains far more entries then are needed (wasteful). Is there perhaps something I'm missing with django which would alleviate the need of a python level solution?</p>
<p>To Clarify:</p>
<p>So, the case that I've hit repeatedly is where I have: </p>
<pre><code>@render_to('my_template.html')
def myview(request):
var1 = #blahblah
var2 = #...
# do stuff with vars
return {'var1': val1,'var2':val2}
</code></pre>
<p>So instead of repeating those variables and naming conventions, I'll do: </p>
<pre><code>@render_to('my_template.html')
def myview(request):
var1 = #blahblah
var2 = #...
# do stuff with vars
return locals()
</code></pre>
<p>Which I find cleaner, but I know its kind of sloppy since there are about 30 more entries in locals() then I actually need. </p>
http://stackoverflow.com/questions/855259/getting-local-dictionary-for-function-scope-only-in-python/855277#8552773Answer by Paolo Bergantino for Getting local dictionary for function scope only in PythonPaolo Bergantino2009-05-12T22:54:22Z2009-05-12T23:04:53Z<p>How is passing a dictionary a violation of DRY? <a href="http://docs.djangoproject.com/en/dev/misc/design-philosophies/#don-t-repeat-yourself-dry" rel="nofollow">Django is all about DRY</a>, so I doubt the standard behavior of it would directly violate it. In either case, however, I use a modified version of <a href="http://bitbucket.org/offline/django-annoying/wiki/Home" rel="nofollow">django-annoying</a> to make the whole thing easier:</p>
<pre><code>@render_to('my_template.html')
def myview(request):
# figure stuff out...
return {'var1':'val1','var2','val2'}
</code></pre>
<p>The <code>render_to</code> decorator takes care of the request context and all that good stuff. Works well.</p>
<p>If this doesn't help, I suggest rephrasing your question. Whatever you want to do messing around with <code>locals()</code> and such is rarely necessary especially in this kind of situation with Django.</p>
http://stackoverflow.com/questions/855259/getting-local-dictionary-for-function-scope-only-in-python/855284#8552845Answer by Daniel Roseman for Getting local dictionary for function scope only in PythonDaniel Roseman2009-05-12T22:57:12Z2009-05-13T06:48:10Z<p>I'm not sure I agree that making a dictionary is a violation of DRY, but if you really don't want to repeat anything at all, you could just define a 'context' dictionary at the top of the view and use dictionary keys instead of variables throughout the view.</p>
<pre><code>def my_view(request):
context = {}
context['items'] = Item.objects.all()
context['anothervalue'] = context['items'][2].name
return render_to_response('template.html', context)
</code></pre>
http://stackoverflow.com/questions/855259/getting-local-dictionary-for-function-scope-only-in-python/855363#8553632Answer by Ned Batchelder for Getting local dictionary for function scope only in PythonNed Batchelder2009-05-12T23:14:39Z2009-05-12T23:14:39Z<p>You say you don't like using locals() because it is "wasteful". Wasteful of what? I believe the dictionary it returns already exists, it's just giving you a reference to it. And even if it has to create the dictionary, this is one of the most highly optimized operations in Python, so don't worry about it.</p>
<p>You should focus on the code structure that best expresses your intention, with the fewest possibilities for error. The waste you are worried about is nothing to worry about.</p>
http://stackoverflow.com/questions/855259/getting-local-dictionary-for-function-scope-only-in-python/856880#8568802Answer by Alex Martelli for Getting local dictionary for function scope only in PythonAlex Martelli2009-05-13T09:02:09Z2009-05-13T09:02:09Z<p>While I agree with many other respondents that passing either <code>locals()</code> or a fully specified dict <code>{'var1':var1, 'var2': var2}</code> is most likely OK, if you specifically want to "subset" a dict such as <code>locals()</code> that's far from hard either, e.g.:</p>
<pre><code>loc = locals()
return dict((k,loc[k]) for k in 'var1 var2'.split())
</code></pre>