bunch
=====
Bunch is a dictionary that supports attribute-style access, a la JavaScript.
>>> b = Bunch()
>>> b.hello = 'world'
>>> b.hello
'world'
>>> b['hello'] += "!"
>>> b.hello
'world!'
>>> b.foo = Bunch(lol=True)
>>> b.foo.lol
True
>>> b.foo is b['foo']
True
Dictionary Methods
------------------
A Bunch is a subclass of ``dict``; it supports all the methods a ``dict`` does:
>>> b.keys()
['foo', 'hello']
Including ``update()``:
>>> b.update({ 'ponies': 'are pretty!' }, hello=42)
>>> print repr(b)
Bunch(foo=Bunch(lol=True), hello=42, ponies='are pretty!')
As well as iteration:
>>> [ (k,b[k]) for k in b ]
[('ponies', 'are pretty!'), ('foo', Bunch(lol=True)), ('hello', 42)]
And "splats":
>>> "The {knights} who say {ni}!".format(**Bunch(knights='lolcats', ni='can haz'))
'The lolcats who say can haz!'
Serialization
-------------
Bunches happily and transparently serialize to JSON and YAML.
>>> b = Bunch(foo=Bunch(lol=True), hello=42, ponies='are pretty!')
>>> import json
>>> json.dumps(b)
'{"ponies": "are pretty!", "foo": {"lol": true}, "hello": 42}'
If JSON support is present (``json`` or ``simplejson``), ``Bunch`` will have a ``toJSON()`` method which returns the object as a JSON string.
If you have PyYAML_ installed, Bunch attempts to register itself with the various YAML Representers so that Bunches can be transparently dumped and loaded.
>>> b = Bunch(foo=Bunch(lol=True), hello=42, ponies='are pretty!')
>>> import yaml
>>> yaml.dump(b)
'!bunch.Bunch\nfoo: !bunch.Bunch {lol: true}\nhello: 42\nponies: are pretty!\n'
>>> yaml.safe_dump(b)
'foo: {lol: true}\nhello: 42\nponies: are pretty!\n'
In addition, Bunch instances will have a ``toYAML()`` method that returns the YAML string using ``yaml.safe_dump()``. This method also replaces ``__str__`` if present, as I find it far more readable. You can revert back to Python's default use of ``__repr__`` with a simple assignment: ``Bunch.__str__ = Bunch.__repr__``. The Bunch class will also have a static method ``Bunch.fromYAML()``, which loads a Bunch out of a YAML string.
Finally, Bunch converts easily and recursively to (``unbunchify()``, ``Bunch.toDict()``) and from (``bunchify()``, ``Bunch.fromDict()``) a normal ``dict``, making it easy to cleanly serialize them in other formats.
Miscellaneous
-------------
* It is safe to ``import *`` from this module. You'll get: ``Bunch``, ``bunchify``, and ``unbunchify``.
* Ample doctests::
$ python -m bunch.test
$ python -m bunch.test -v | tail -n22
1 items had no tests:
bunch.fromYAML
16 items passed all tests:
8 tests in bunch
13 tests in bunch.Bunch
7 tests in bunch.Bunch.__contains__
4 tests in bunch.Bunch.__delattr__
7 tests in bunch.Bunch.__getattr__
3 tests in bunch.Bunch.__repr__
5 tests in bunch.Bunch.__setattr__
2 tests in bunch.Bunch.fromDict
2 tests in bunch.Bunch.toDict
5 tests in bunch.bunchify
2 tests in bunch.from_yaml
3 tests in bunch.toJSON
6 tests in bunch.toYAML
3 tests in bunch.to_yaml
3 tests in bunch.to_yaml_safe
4 tests in bunch.unbunchify
77 tests in 17 items.
77 passed and 0 failed.
Test passed.
Feedback
--------
Open a ticket / fork the project on GitHub_, or send me an email at `dsc@less.ly`_.
.. _PyYAML: http://pyyaml.org/wiki/PyYAML
.. _GitHub: http://github.com/dsc/bunch
.. _dsc@less.ly: mailto:dsc@less.ly
Raw data
{
"_id": null,
"home_page": "http://github.com/dsc/bunch",
"name": "zato-ext-bunch",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "bunch,dict,mapping,container,collection",
"author": "David Schoonover",
"author_email": "dsc@less.ly",
"download_url": "https://files.pythonhosted.org/packages/76/a6/2001578916862d60d4de0cc6942e0c4d6ad0d8103794b61307b5e7aa7ade/zato-ext-bunch-1.2.tar.gz",
"platform": null,
"description": "bunch\n=====\n\nBunch is a dictionary that supports attribute-style access, a la JavaScript.\n\n>>> b = Bunch()\n>>> b.hello = 'world'\n>>> b.hello\n'world'\n>>> b['hello'] += \"!\"\n>>> b.hello\n'world!'\n>>> b.foo = Bunch(lol=True)\n>>> b.foo.lol\nTrue\n>>> b.foo is b['foo']\nTrue\n\n\nDictionary Methods\n------------------\n\nA Bunch is a subclass of ``dict``; it supports all the methods a ``dict`` does:\n\n>>> b.keys()\n['foo', 'hello']\n\nIncluding ``update()``:\n\n>>> b.update({ 'ponies': 'are pretty!' }, hello=42)\n>>> print repr(b)\nBunch(foo=Bunch(lol=True), hello=42, ponies='are pretty!')\n\nAs well as iteration:\n\n>>> [ (k,b[k]) for k in b ]\n[('ponies', 'are pretty!'), ('foo', Bunch(lol=True)), ('hello', 42)]\n\nAnd \"splats\":\n\n>>> \"The {knights} who say {ni}!\".format(**Bunch(knights='lolcats', ni='can haz'))\n'The lolcats who say can haz!'\n\n\nSerialization\n-------------\n\nBunches happily and transparently serialize to JSON and YAML.\n\n>>> b = Bunch(foo=Bunch(lol=True), hello=42, ponies='are pretty!')\n>>> import json\n>>> json.dumps(b)\n'{\"ponies\": \"are pretty!\", \"foo\": {\"lol\": true}, \"hello\": 42}'\n\nIf JSON support is present (``json`` or ``simplejson``), ``Bunch`` will have a ``toJSON()`` method which returns the object as a JSON string.\n\nIf you have PyYAML_ installed, Bunch attempts to register itself with the various YAML Representers so that Bunches can be transparently dumped and loaded.\n\n>>> b = Bunch(foo=Bunch(lol=True), hello=42, ponies='are pretty!')\n>>> import yaml\n>>> yaml.dump(b)\n'!bunch.Bunch\\nfoo: !bunch.Bunch {lol: true}\\nhello: 42\\nponies: are pretty!\\n'\n>>> yaml.safe_dump(b)\n'foo: {lol: true}\\nhello: 42\\nponies: are pretty!\\n'\n\nIn addition, Bunch instances will have a ``toYAML()`` method that returns the YAML string using ``yaml.safe_dump()``. This method also replaces ``__str__`` if present, as I find it far more readable. You can revert back to Python's default use of ``__repr__`` with a simple assignment: ``Bunch.__str__ = Bunch.__repr__``. The Bunch class will also have a static method ``Bunch.fromYAML()``, which loads a Bunch out of a YAML string.\n\nFinally, Bunch converts easily and recursively to (``unbunchify()``, ``Bunch.toDict()``) and from (``bunchify()``, ``Bunch.fromDict()``) a normal ``dict``, making it easy to cleanly serialize them in other formats.\n\n\nMiscellaneous\n-------------\n\n* It is safe to ``import *`` from this module. You'll get: ``Bunch``, ``bunchify``, and ``unbunchify``.\n\n* Ample doctests::\n\n $ python -m bunch.test\n $ python -m bunch.test -v | tail -n22\n 1 items had no tests:\n bunch.fromYAML\n 16 items passed all tests:\n 8 tests in bunch\n 13 tests in bunch.Bunch\n 7 tests in bunch.Bunch.__contains__\n 4 tests in bunch.Bunch.__delattr__\n 7 tests in bunch.Bunch.__getattr__\n 3 tests in bunch.Bunch.__repr__\n 5 tests in bunch.Bunch.__setattr__\n 2 tests in bunch.Bunch.fromDict\n 2 tests in bunch.Bunch.toDict\n 5 tests in bunch.bunchify\n 2 tests in bunch.from_yaml\n 3 tests in bunch.toJSON\n 6 tests in bunch.toYAML\n 3 tests in bunch.to_yaml\n 3 tests in bunch.to_yaml_safe\n 4 tests in bunch.unbunchify\n 77 tests in 17 items.\n 77 passed and 0 failed.\n Test passed.\n\n\nFeedback\n--------\n\nOpen a ticket / fork the project on GitHub_, or send me an email at `dsc@less.ly`_.\n\n.. _PyYAML: http://pyyaml.org/wiki/PyYAML\n.. _GitHub: http://github.com/dsc/bunch\n.. _dsc@less.ly: mailto:dsc@less.ly\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "A dot-accessible dictionary (a la JavaScript objects)",
"version": "1.2",
"split_keywords": [
"bunch",
"dict",
"mapping",
"container",
"collection"
],
"urls": [
{
"comment_text": "",
"digests": {
"md5": "0e5de58d1407fc4b51d1d74996bc761a",
"sha256": "cadc99bc9751c8800b09b9f2de79693a7f9ef5dca91511a468cd4439e22c652a"
},
"downloads": -1,
"filename": "zato-ext-bunch-1.2.tar.gz",
"has_sig": false,
"md5_digest": "0e5de58d1407fc4b51d1d74996bc761a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8357,
"upload_time": "2022-12-01T14:01:16",
"upload_time_iso_8601": "2022-12-01T14:01:16.944901Z",
"url": "https://files.pythonhosted.org/packages/76/a6/2001578916862d60d4de0cc6942e0c4d6ad0d8103794b61307b5e7aa7ade/zato-ext-bunch-1.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2022-12-01 14:01:16",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "dsc",
"github_project": "bunch",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"tox": true,
"lcname": "zato-ext-bunch"
}