DotDict icon indicating copy to clipboard operation
DotDict copied to clipboard

A simple Python library to make chained attributes possible.

Results 3 DotDict issues
Sort by recently updated
recently updated
newest added

This seems like it provides a subset of the functionality that [Box](https://github.com/cdgriffith/Box) does. https://github.com/cdgriffith/Box/wiki/Types-of-Boxes How does it differ?

``` $ pip3 install -U --user attr-dot-dict Collecting attr-dot-dict Obtaining dependency information for attr-dot-dict from https://files.pythonhosted.org/packages/af/ab/3c717181e61cfa97b71e6e01d072725c2d323350b408ab43547d02bc19ad/attr_dot_dict-0.1.0-py3-none-any.whl.metadata Downloading attr_dot_dict-0.1.0-py3-none-any.whl.metadata (42 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.0/42.0 kB 1.6 MB/s eta 0:00:00 Downloading attr_dot_dict-0.1.0-py3-none-any.whl (27...

I tried doing this: ``` In [5]: aa = ddict({'asdf': 1, 'xzcv': 2}) In [6]: aa Out[6]: DotDict() ``` Would it be possible to pass the dict already in the...