With regards to the `DictObj`, would the following work for you? A blank class will allow you to arbitrarily add to or replace stuff in a container object.
class Container(object):
pass
myContainer = Container()
myContainer.spam = "in a can"
myContainer.eggs = "in a shell"
Right?