User kevin holzer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T23:29:01Zhttp://stackoverflow.com/feeds/user/19139http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/224026/javascript-style-dot-notation-for-dictionary-keys-unpythonic/224080#2240807Answer by kevin holzer for Javascript style dot notation for dictionary keys unpythonic? kevin holzer2008-10-22T00:40:31Z2008-10-24T23:46:17Z<p>With regards to the <code>DictObj</code>, would the following work for you? A blank class will allow you to arbitrarily add to or replace stuff in a container object.</p>
<pre><code>class Container(object):
pass
>>> myContainer = Container()
>>> myContainer.spam = "in a can"
>>> myContainer.eggs = "in a shell"
</code></pre>
<p>If you want to not throw an AttributeError when there is no attribute, what do you think about the following? Personally, I'd prefer to use a dict for clarity, or to use a try/except clause.</p>
<pre><code>class QuietContainer(object):
def __getattr__(self, attribute):
try:
return object.__getattr__(self,attribute)
except AttributeError:
return None
>>> cont = QuietContainer()
>>> print cont.me
None
</code></pre>
<p>Right?</p>
http://stackoverflow.com/questions/218616/getting-method-parameter-names-in-python/220366#2203664Answer by kevin holzer for Getting method parameter names in pythonkevin holzer2008-10-21T00:02:19Z2008-10-21T00:08:23Z<p>Here is something I think will work for what you want, using a decorator.</p>
<pre><code>class LogWrappedFunction(object):
def __init__(self, function):
self.function = function
def logAndCall(self, *arguments, **namedArguments):
print "Calling %s with arguments %s and named arguments %s" %\
(self.function.func_name, arguments, namedArguments)
self.function.__call__(*arguments, **namedArguments)
def logwrap(function):
return LogWrappedFunction(function).logAndCall
@logwrap
def doSomething(spam, eggs, foo, bar):
print "Doing something totally awesome with %s and %s." % (spam, eggs)
doSomething("beans","rice", foo="wiggity", bar="wack")
</code></pre>
<p>Run it, it will yield the following output:</p>
<pre><code>C:\scripts>python decoratorExample.py
Calling doSomething with arguments ('beans', 'rice') and named arguments {'foo':
'wiggity', 'bar': 'wack'}
Doing something totally awesome with beans and rice.
</code></pre>
http://stackoverflow.com/questions/224026/javascript-style-dot-notation-for-dictionary-keys-unpythonic/224080#224080Comment by kevin holzer on Javascript style dot notation for dictionary keys unpythonic? kevin holzer2008-10-24T23:39:14Z2008-10-24T23:39:14ZWhat about defining a special <b>getattr</b> method? It could just catch the exception and return none. Lemme fix my code to include that.