I have a sample dictionary.
>>> my_dict = {'name': 'James', 'age': 10}
I want to get attributes from dictionary as following,
>>> my_dict.name
James
>>> my_dict.age
10
How can I override dict meta methods for this ? I have dictionary consisting large number of key, values. I just want convert it to some object so that it can work as normal dictionary as well as getting attribute as explained above.