I want to make one YAML file by Python like as below.
A:
B:
c: {d:e}
but if I do it like as below:
data = {'A':{'B':{ 'c':'{d:e}'}}}
yaml.dump(data,file,default_flow_style = False)
the output in the file is as below:
A:
B:
c: '{d: e}'
I don't want the quotation around. How to do it?