Would it be cool to be able to do something like this: ``` $ --foo.bar=1 --foo.che=2 ``` And have `foo` be passed to the handle method like: ```python foo = { "bar": 1, "che": 2 } ```