I find myself writing this class often in my python code when I need a quick single use class.
class Struct(object): def __init__( self, **kwargs ): for
You may want to look at Records by George Sakkis. It has worked well for me as a "mutable named tuple."