У меня есть этот CSV:
product_id, width, height
14866, 200, 200
14866, 300, 300
Я использую импорт CSV и JSON, чтобы попытаться создать JSON, чтобы сделать запрос API.
Вот так выглядит мой питон прямо сейчас:
import csv
import json
json_dict = {}
results = []
with open('sizes.csv',encoding='utf-8-sig') as f:
for row in csv.DictReader(f,):
results.append(
{'id': int(row['product_id']),
'product':
{'product_creative_size_attributes':[{'width':str(row['width']),'height': str(row['height'])}]}})
json_dict["sizes"] = results
output_json = print(json.dumps(json_dict,indent=4))
Что приводит к этому json:
{
"sizes": [
{
"id": 14866,
"product": {
"product_creative_size_attributes": [
{
"width": "200",
"height": "200"
}
]
}
},
{
"id": 14866,
"product": {
"gam_product_creative_size_attributes": [
{
"width": "300",
"height": "300"
}
]
}
}
]
}
json, которого я пытаюсь достичь,чтобы иметь размеры для одного и того же product_id, который будет вложен так:
{
"sizes": [
{
"id": 14866,
"product": {
"product_creative_size_attributes": [
{
"width": "200",
"height": "200"
},
{
"width": "300",
"height": "300"
}
]
}
}
]
}