I'm very new to python and I wish I could do . notation to access values of a dict. 
Lets say I have test like this:
>>> test = dict()
>>> test['name'] = 'value'
>>> print(test['name'])
value
But I wish I could do test.name to get value. Infact I did it by overriding the __getattr__ method in my class like this:
class JuspayObject:
    def __init__(self,response):
        self.__dict__['_response'] = response
    def __getattr__(self,key): 
        try:
            return self._response[key]
        except KeyError,err:
            sys.stderr.write('Sorry no key matches')
and this works! when I do:
test.name // I get value.
But the problem is when I just print test alone I get the error as:
'Sorry no key matches'
Why is this happening?
 
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
    