I have a question regarding to the python configparser module. I'm using Python 3.x.
I have a lot of .ini-files which are corrupt, respectively in my oppinion defect. e.g. there are values without regarding key e.g.
[SESSIONS_id]
Session_a={F34B3238-EEE5-4006-B19C-AB8CC233D8F0}
Session_b={AF2D869B-0FB1-4287-A10E-82B0884E1CFC}
Session_c={F5A7FA65-2107-4B9B-A7C2-8C89C354D4FF}
={083465AF-DC9E-4FF8-A78F-CC1DF17C84B9}
My Problem here is, that there exists only a Option to "allow no values", I' ve already found that, but how to handle the .ini-files providing values for no keys?
The configparser doesn't read it, so how to repair?
Thanks in advance