0
我有一些困難,從相當複雜的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和任何幫助將不勝感激!
提前致謝。