I want to get all the fields under a Section in a config file into a list. Problem with ConfigParser is, it does not allow duplication of Options.Is it possible to use ConfigParser to do so or do I need to read the whole file and put the fields of a Section line by line? Below is not exact data but similar:
[Data]
Version = 2.0
Length = 14
ID = 1123
Signature = ABCD
ID = XYZ
Also tried with configparser's strict=False, but it is not working.