AttrDict Python Module

I’ve been doing quite a bit of Python hacking in my recent free time. A couple days ago, I had the desire for a dictionary that I could access key values just like object attribute names. For example, in the dictionary d={‘key’:’value’}, I wanted to be able to use d.key to return ‘value’. I thought… Continue reading AttrDict Python Module