Fedora 14 Update: python-bunch-1.0.0-2.fc14

updates at fedoraproject.org updates at fedoraproject.org
Sun Aug 1 19:26:49 UTC 2010


--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2010-11730
2010-08-01 19:16:17
--------------------------------------------------------------------------------

Name        : python-bunch
Product     : Fedora 14
Version     : 1.0.0
Release     : 2.fc14
URL         : http://tire.less.ly/hacking/bunch
Summary     : Python dictionary with attribute-style access
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')])

--------------------------------------------------------------------------------
Update Information:

rebuild for python-2.7  * Requesting stable as the package won't function at all
otherwise.
--------------------------------------------------------------------------------

This update can be installed with the "yum" update program.  Use 
su -c 'yum update python-bunch' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.

All packages are signed with the Fedora Project GPG key.  More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------


More information about the package-announce mailing list