python-bunch

Dot-accessible Python dictionary (a la JavaScript objects)
  https://github.com/dsc/bunch/
  0
  no reviews



Bunch is a subclass of Python's dict that supports attribute-style access, a la JavaScript.

For instance, you can have the following: >>> b = bunch.bunchify({"foo":"bar"} >>> b.foo 'bar'