• Stars
    star
    483
  • Rank 90,430 (Top 2 %)
  • Language
    Python
  • License
    MIT License
  • Created over 14 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Bunch is a Python dictionary that provides attribute-style access (a la JavaScript objects).

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 [email protected].

More Repositories

1

pyquery

A jQuery-like library for Python (fork of https://bitbucket.org/olauzanne/pyquery/)
Python
105
star
2

guess-language

Attempts to determine the natural language of a selection of Unicode (utf-8) text (a clone of http://code.google.com/p/guess-language with package metadata)
Python
47
star
3

connect-compiler

Development middleware to dynamically recompile derived files at serve-time.
JavaScript
41
star
4

colorbrewer-python

Colors from ColorBrewer for easy use in Python.
Python
28
star
5

Tab-Manager

The source code of the google chrome extension "Tab Manager"
JavaScript
27
star
6

coffeecup

CoffeeScript WSGI Middleware
Python
22
star
7

jsongrep

A shell tool to search and select bits out of a JSON document.
Python
15
star
8

shpaml

HAML-like HTML generator for python.
Python
14
star
9

node-remove

Sync and async rm -r for node.
JavaScript
11
star
10

coco-tmbundle

TextMate bundle for the Coco language
9
star
11

bitstring.js

Read and write packed binary strings, bit-by-bit, in JavaScript
JavaScript
9
star
12

nesting

Operator to construct nested rollups from lists of records
Python
8
star
13

underscore.nested

Nested and delegating object-graph extensions for Underscore.js
JavaScript
8
star
14

trowl

A Python web-scraper framework.
Python
6
star
15

operator.js

Functional operators for JavaScript, usable in both the browser and the server.
JavaScript
6
star
16

timeseries.js

Utilities for working with a collection of data columns aligned along a common timeline
JavaScript
5
star
17

u.js

A minimalist, functional utility library designed for embedding.
JavaScript
5
star
18

flashcookies

A shell tool to manipualte Flash cookies (.sol Flash SharedObject files)
Python
5
star
19

gamebook

It's a game book!
4
star
20

path.py

Mirror of Jason Orendorff's path.py. Sadly, the PyPi link points at http://www.jorendorff.com/articles/python/path/, which has been unavailable for some time.
4
star
21

py-lessly

A collection of random python tools.
Python
3
star
22

node-buildtools

Utilities for use in Jake/Cake/Coke build files
JavaScript
2
star
23

likepython

totally like omg python (bai)
2
star
24

kraken-old

Wikimedia analytics data services platform
Python
2
star
25

limn-mediawiki-ext

Embed Limn visualizations in Mediawiki
JavaScript
2
star
26

griddle

A browser-based grid tool for games.
1
star
27

dsc.github.com

dsc.github.com
1
star
28

connect-compiler-extras

Extra compilers for connect-compiler
JavaScript
1
star
29

flashme

Flashing Rose.
JavaScript
1
star
30

y-js

A functional javascript library for core type extension.
JavaScript
1
star
31

node-knockout

npm module for Knockout for use in Node (tests, etc)
JavaScript
1
star
32

fabric-tmbundle

TextMate bundle for Fabric
1
star
33

cue.js

A sensible async flow-control library.
1
star
34

scm-scripts

Useful scripts when working with source control.
1
star
35

hp-mor

HP:MoR Character Dialogue Counts
Python
1
star