python Programming Glossary: dotdictify
Python: Recursively access dict via attributes as well as index access? http://stackoverflow.com/questions/3031219/python-recursively-access-dict-via-attributes-as-well-as-index-access to be able to do something like this from dotDict import dotdictify life 'bigBang' 'stars' 'planets' dotdictify life #this would.. import dotdictify life 'bigBang' 'stars' 'planets' dotdictify life #this would be the regular way life 'bigBang' 'stars' 'planets'.. Here's one way to create this kind of experience class dotdictify dict marker object def __init__ self value None if value is..
|