カスタム クラスのディクショナリを保持して、(db からロードされた) 他のディクショナリから動的にインスタンス化できるようにしたいのですが、何を保存すればよいかわかりません。
class_register = {}
class Foo(object):
def __init__(self, **kwargs):
class_register[self.__class__.__name__] = ?? # what to store here?
self.__dict__.update(kwargs)
new_instance = class_register[result['class_name']](**result['data'])
どんな提案にもオープンです。