Binary package “python-bunch” in ubuntu xenial

Dot-accessible Python dictionary (a la JavaScript objects)

 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'