Set of pure-Python utility functions for common programming tasks.
When they're not builtins, they're boltons.
$ python -m boltons.jsonutils < data.json$ python -c "from boltons.dictutils import OneToOne; m = OneToOne(); m['key'] = 'value'"$ python -c "from boltons.iterutils import chunked; list(chunked(range(10), 3))"$ python -c "from boltons.strutils import slugify; slugify('Hello World!')"$ python -c "from boltons.cacheutils import cachedproperty; print(cachedproperty.__doc__)"