I have a cfg file which has 10 sections..and each of the section has similar fields.
[sec1]
id:...
[sec2]
id..
...
So right now.. I am doing something like..
config_instance = ConfigParser.ConfigParser()
id1 = config_instance.get("sec1","id")
id2 = config_instance.get("sec2","id")
and so on
Is there a better more pythonic way to do this.. that it automatically reads all the sections and extracts this feature??
Thanks
ConfigParser.SafeConfigParser.