モデルから辞書への変換を支援するPythonモジュールを公開しました。 bpmappers 0.8.2 : Python Package Index tokibito / python-bpmappers — Bitbucket ビープラウドで使っているものです。 JSONのAPIを作るときなどに、ツリー構造の辞書オブジェクトから変換したりしますが、その辞書の生成などで役に立ちます。 サンプルコードを以下に。 test.py from bpmappers import Mapper, RawField, ListDelegateField class Person(object): def __init__(self, name, age): self.name = name self.age = age def __repr__(self): return '<Person name:%