i want to read certain data from a config file as key,value
i found below way to define the key value in config.ini
[Section]
value={"name":"John","id":"101"}
but not seeing the way to parse this value as dictionary in python i actually need to retrieve each key value from 'Section value'
Any right solution to this?