nicholasmireles / DotDict

A simple Python library to make chained attributes possible.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Comparison to Box

Palisand opened this issue · comments

This seems like it provides a subset of the functionality that Box does.

https://github.com/cdgriffith/Box/wiki/Types-of-Boxes

How does it differ?

Suppose I didn't do much of a market survey beforehand.

After a further review, I have determined that really the only difference here is that I want the following to work:

_dict = DotDict()
_dict.a.b = "c"

Which fails in Box. Although, figuring out how to achieve that behavior while maintaining all the other functionality has me stumped.