Thu, 25 Apr 2024 04:22:02 UTC | login

Information for build python-bunch-1.0.1-1.el6

ID1016
Package Namepython-bunch
Version1.0.1
Release1.el6
Epoch
SummaryPython dictionary with attribute-style access
Descriptionpython-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')])
Built bybstinson
State complete
Volume DEFAULT
StartedThu, 23 Apr 2015 16:18:06 UTC
CompletedThu, 23 Apr 2015 16:20:40 UTC
Taskbuild (bananas6-el6, python-bunch-1.0.1-1.el6.src.rpm)
Tags
bananas6-testing
infrastructure6-testing
RPMs
src
python-bunch-1.0.1-1.el6.src.rpm (info) (download)
noarch
python-bunch-1.0.1-1.el6.noarch.rpm (info) (download)
Logs
noarch
root.log
build.log
state.log
Changelog * Thu Dec 29 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 1.0.1-1 - New upstream release that adds pyyaml and json serialization * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Fri Jul 30 2010 Toshio Kuraotmi <toshio@fedoraproject.org> - 1.0.0-2 - Rebuild for python-2.7 * Fri Mar 19 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 1.0.0-1 - Initial Fedora Build