I've got an win32 app accessed by users via RDP acess.
Each user has his/her own user_app.ini
file.
When I upgrade my app on the RDP server, I sometimes need to create/modify entries in the user_app.ini
file of each user. I wrote a Python script to handle the job that use some upgrade.ini
file to update all the user_app.ini
files, using the ConfigParser
module.
My problem is that my section names should be seen as case insensitive, but ConfigParser
is case-sensitive regarding sections (while it can be case insensitve regarding options using optionxform()
)
Can someone help me ? Thanks