Javascript style dot notation for dictionary keys unpythonic? - Stack Overflow most recent 30 from stackoverflow.com2009-11-07T02:43:25Zhttp://stackoverflow.com/feeds/question/224026http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/224026/javascript-style-dot-notation-for-dictionary-keys-unpythonic5Javascript style dot notation for dictionary keys unpythonic? Parand2008-10-22T00:08:01Z2009-01-26T05:56:57Z
<p>I've started to use constructs like these:</p>
<pre><code>class DictObj(object):
def __init__(self):
self.d = {}
def __getattr__(self, m):
return self.d.get(m, None)
def __setattr__(self, m, v):
super.__setattr__(self, m, v)
</code></pre>
<p>Update: based on this thread, I've revised the DictObj implementation to:</p>
<pre><code>class dotdict(dict):
def __getattr__(self, attr):
return self.get(attr, None)
__setattr__= dict.__setitem__
__delattr__= dict.__delitem__
class AutoEnum(object):
def __init__(self):
self.counter = 0
self.d = {}
def __getattr__(self, c):
if c not in self.d:
self.d[c] = self.counter
self.counter += 1
return self.d[c]
</code></pre>
<p>where DictObj is a dictionary that can be accessed via dot notation:</p>
<pre><code>d = DictObj()
d.something = 'one'
</code></pre>
<p>I find it more aesthetically pleasing than <code>d['something']</code>. Note that accessing an undefined key returns None instead of raising an exception, which is also nice.</p>
<p>Update: Smashery makes a good point, which mhawke expands on for an easier solution. I'm wondering if there are any undesirable side effects of using <strong>dict</strong> instead of defining a new dictionary; if not, I like mhawke's solution a lot.</p>
<p>AutoEnum is an auto-incrementing Enum, used like this:</p>
<pre><code>CMD = AutoEnum()
cmds = {
"peek": CMD.PEEK,
"look": CMD.PEEK,
"help": CMD.HELP,
"poke": CMD.POKE,
"modify": CMD.POKE,
}
</code></pre>
<p>Both are working well for me, but I'm feeling unpythonic about them. </p>
<p>Are these in fact bad constructs?</p>
http://stackoverflow.com/questions/224026/javascript-style-dot-notation-for-dictionary-keys-unpythonic/224051#2240513Answer by Smashery for Javascript style dot notation for dictionary keys unpythonic? Smashery2008-10-22T00:22:11Z2008-10-22T00:32:30Z<p>As far as I know, Python classes use dictionaries to store their attributes anyway (that's hidden from the programmer), so it looks to me that what you've done there is effectively emulate a Python class... using a python class. </p>
http://stackoverflow.com/questions/224026/javascript-style-dot-notation-for-dictionary-keys-unpythonic/224071#2240711Answer by Jason Baker for Javascript style dot notation for dictionary keys unpythonic? Jason Baker2008-10-22T00:34:59Z2008-10-22T00:34:59Z<p>I like dot notation a lot better than dictionary fields personally. The reason being that it makes autocompletion work a lot better.</p>
http://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/224026/javascript-style-dot-notation-for-dictionary-keys-unpythonic/224722#2247223Answer by mhawke for Javascript style dot notation for dictionary keys unpythonic? mhawke2008-10-22T07:06:02Z2008-10-22T07:06:02Z<p>This is a simpler version of your DictObj class:</p>
<pre><code>class DictObj(object):
def __getattr__(self, attr):
return self.__dict__.get(attr)
>>> d = DictObj()
>>> d.something = 'one'
>>> print d.something
one
>>> print d.somethingelse
None
>>>
</code></pre>
http://stackoverflow.com/questions/224026/javascript-style-dot-notation-for-dictionary-keys-unpythonic/224787#2247871Answer by zgoda for Javascript style dot notation for dictionary keys unpythonic? zgoda2008-10-22T07:55:24Z2008-10-22T07:55:24Z<p>It's not bad if it serves your purpose. "Practicality beats purity".</p>
<p>I saw such approach elserwhere (eg. in <a href="http://www.blueskyonmars.com/projects/paver/" rel="nofollow">Paver</a>), so this can be considered <em>common need</em> (or desire).</p>
http://stackoverflow.com/questions/224026/javascript-style-dot-notation-for-dictionary-keys-unpythonic/224876#2248765Answer by bobince for Javascript style dot notation for dictionary keys unpythonic? bobince2008-10-22T08:29:47Z2008-10-22T08:29:47Z<p>Your DictObj example is actually quite common. Object-style dot-notation access can be a win if you are dealing with ‘things that resemble objects’, ie. they have fixed property names containing only characters valid in Python identifiers. Stuff like database rows or form submissions can be usefully stored in this kind of object, making code a little more readable without the excess of ['item access'].</p>
<p>The implementation is a bit limited - you don't get the nice constructor syntax of dict, len(), comparisons, 'in', iteration or nice reprs. You can of course implement those things yourself, but in the new-style-classes world you can get them for free by simply subclassing dict:</p>
<pre><code>class AttrDict(dict):
__getattr__= dict.__getitem__
__setattr__= dict.__setitem__
__delattr__= dict.__delitem__
</code></pre>
<p>To get the default-to-None behaviour, simply subclass Python 2.5's collections.defaultdict class instead of dict.</p>
http://stackoverflow.com/questions/224026/javascript-style-dot-notation-for-dictionary-keys-unpythonic/235675#2356751Answer by Ryan for Javascript style dot notation for dictionary keys unpythonic? Ryan2008-10-25T00:17:16Z2009-01-26T05:56:57Z<p>The one major disadvantage of using something like your DictObj is you either have to limit allowable keys or you can't have methods on your DictObj such as <code>.keys()</code>, <code>.values()</code>, <code>.items()</code>, etc.</p>
http://stackoverflow.com/questions/224026/javascript-style-dot-notation-for-dictionary-keys-unpythonic/235686#2356861Answer by cdleary for Javascript style dot notation for dictionary keys unpythonic? cdleary2008-10-25T00:33:25Z2008-10-25T00:33:25Z<p>It's not "wrong" to do this, and it can be nicer if your dictionaries have a strong possibility of turning into objects at some point, but be wary of the reasons for having bracket access in the first place:</p>
<ol>
<li>Dot access can't use keywords as keys.</li>
<li>Dot access has to use Python-identifier-valid characters in the keys.</li>
<li>Dictionaries can hold any hashable element -- not just strings.</li>
</ol>
<p>Also keep in mind you can always make your objects access like dictionaries if you decide to switch to objects later on.</p>
<p>For a case like this I would default to the "readability counts" mantra: presumably other Python programmers will be reading your code and they probably won't be expecting dictionary/object hybrids everywhere. If it's a good design decision for a particular situation, use it, but I wouldn't use it without necessity to do so.</p>
http://stackoverflow.com/questions/224026/javascript-style-dot-notation-for-dictionary-keys-unpythonic/461489#4614890Answer by Denis for Javascript style dot notation for dictionary keys unpythonic? Denis2009-01-20T14:23:23Z2009-01-20T14:23:23Z<p>Can anyone get cPickle to work with this minimal Dotdict
(in Python 2.5.1, macosx 10.4.11) ?</p>
<pre><code>class Dotdict( dict ):
def __getattr__(self, attr):
return self.get(attr, None)
if __name__ == "__main__":
d = Dotdict( a=1 )
print d.a, d["a"], d.get( "no", 42 ), d, d.keys(), "%(a)s" % d
# print "%(no)s" % d # KeyError
import cPickle
ddump = cPickle.dumps( d, -1 )
# => TypeError: 'NoneType' object is not callable
# assert ddump == cPickle.loads( ddump )
</code></pre>