かなり複雑なPythonオブジェクトからJSONファイルを構築するのにはいくつかの困難があります。JSONファイルをPythonオブジェクトから構築する
私はJSONファイルに構築しようとしていますクラスは次のようになります。私はキーが属性の文字列名だった、と値の内容だった辞書を構築しようとした
class Recipe:
def __ini__(self):
self.recipeTitle = ""
self.recipeDiscription = ""
self.recipeMetaData = []
self.reipeIngredients = collections.OrderedDict()
self.instructions = []
self.searchableIngredients = []
self.allIng = []
self.tags = []
self.ingredientMetadata = []
# self.getAllIngredients()
属性。しかし、json.dump()はリスト、辞書、文字列の辞書を気に入らなかった。リストのすべてのコンテンツを結合して独自の方法で区切って文字列を作成するなどのJSONファイルを作成するロジックを手作業で作成する必要がありますか、そうしたオブジェクトをJSONに変換する簡単な方法はありますか?
は参考までに、人口レシピオブジェクトは、次のようになります
recipe.recipeTitle = "Pancakes"
recipe.recipeDiscription = "Something really tasty"
recipe.metaData = ["15 Minutes", "Serves 5"]
recipe.recipeIngredients = {('For the sauce', ['sugar', 'spice',
'everything nice']),('For the food', ['meat', 'fish', 'eggs'])}
recipe.instructions = ['First, stir really well', 'Second - fry']
self.allIng = ['sugar', 'spice', 'everything nice', 'meat', 'fish',
'eggs']
self.tags = [1252, 2352, 2174, 454]
self.ingredientMetadata = [1,17,23,55,153,352]
を私はJSONにこれを有効にしようとこだわっていると、任意の助けをいただければ幸いです!
ありがとうございます。