Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-release-src > by-pkgid > 8be55e754f769ea753c87a6e2e10eea6

python-bunch-1.0.1-7.mga7.src.rpm

Description:

python-bunch provides a python class which can perform as a dict whose keys are
also accessible as attributes, similar to JavaScript objects. For instance::

>>> import bunch
>>> people = bunch.Bunch({'alice': 'here', 'bob': 'there'})
>>> print people['alice'], people.alice
here here

The piece of python-bunch that sets it apart from similar modules found inside
other projects is the bunchify() function which recursively converts from
a dict to a Bunch::

>>> multi_level = {'array': ['scalar', {'mapping': 'to show recursion'} ]}
>>> bunch.bunchify(multi_level)
Bunch(array=['scalar', Bunch(mapping='to show recursion')])

Generated packages:

Other version of this rpm: