Я хочу заменить текст в 1 JSON, используя ключи, сопоставленные с секундой json. Оба JSON являются динамическими c, и первый JSON можно изменить, чтобы использовать ключи из второго JSON.
text_to_replace = json.dumps([{"type": "data", "layerName": "THIS IS Mohit", "property": "Source Text", "expression": "time > 4 ? 'This is {groom.first_name}' : 'This is {groom.first_name}'", "composition": "01 Oliver"}, {"type": "data", "layerName": "THIS IS {bride.first_name}", "property": "Source Text", "expression": "time > 4 ? 'This is Aashi' : 'This is {bride.first_name}'", "composition": "02 Amelia"}, {"type": "data", "layerName": "January 2020", "property": "Source Text", "expression": "time > 4 ? '21st January 2021' : '21st January 2021'", "composition": "03 November"}, {"type": "data", "layerName": "JANUARY 2020", "property": "Source Text", "expression": "time > 4 ? '21st January 2021' : '21st January 2021'", "composition": "02 Date"}])
context = {'function_list': [
{'name': 'Xbbd', 'venue': 'Xbxb\nXnx', 'time': '06:00 AM', 'date': '19th April 2020',
'date_d_m_y_hyphen': '19-Apr-2020', 'timestamp': 1587234600.0, 'date_hindi': '19 अप्रैल 2020',
'date_hindi_A': 'रविवार', 'date_hindi_B': 'अप्रैल', 'effective_date': '19th Apr 2020',
'effective_day': 'Sunday', 'effective_time': '06:00 AM Onwards', 'effective_month': None}],
'primary': {'first_name': 'Bride Name', 'last_name': 'Gshs', 'fathers_name': 'Sbsb',
'mothers_name': 'Bsb', 'grand_fathers_name': 'Sbdb', 'grand_mothers_name': 'Sb',
'effective_name': 'Bride Name Gshs',
'effective_parents_message': 'Daughter of \nSbsb & Bsb',
'effective_grand_parents_message': 'Grand Daughter of \nSbdb & Sb'},
'secondary': {'first_name': 'Groom Name', 'last_name': 'Xbbs', 'fathers_name': 'Xbdb',
'mothers_name': 'Bdbd', 'grand_fathers_name': 'Xbxbnd', 'grand_mothers_name': 'Xbx',
'effective_name': 'Groom Name Xbbs',
'effective_parents_message': 'Son of \nXbdb & Bdbd',
'effective_grand_parents_message': 'Grand Son of \nXbxbnd & Xbx'},
'other_details': {'special_message': '', 'special_message2': '', 'card_for': 'bride',
'invitation_from': 'zbzb', 'first_function_name': 'Xbbd', 'venue': 'Xbxb\nXnx',
'date': '19th Apr 2020', 'date_a': 'Sun', 'date_A': 'Sunday', 'date_d': '19',
'date_b': 'Apr', 'date_B': 'April', 'date_Y': '2020', 'day_th': 'th',
'time': '06:00 AM', 'date_hindi': '19 अप्रैल 2020', 'date_hindi_A': 'रविवार',
'date_hindi_B': 'अप्रैल', 'effective_date': '19th Apr 2020',
'effective_day': 'Sunday', 'effective_time': '06:00 AM Onwards',
'effective_month': None},
'static_details': {'weds': 'weds'}
}
Я пытался использовать python форматирование строки с использованием класса Template, но это Кажется, не поддерживает сложный дикт.
from string import Template
s = Template("$bride['name'] likes what")
temp_json = {'bride': {'name': 'ishita'}}
print('temp_dict', type(temp_json))
temp = s.safe_substitute(temp_json)
print('string', s)
print('string', temp)
Не работает. Любые предложения о том, что еще я могу попытаться сделать это.