Case sensitive ConfigParser

In order to have a case sensite ConfigParser, simply replace the ConfigParser with the following class :

from configparser import ConfigParser

class CaseConfigParser(ConfigParser):
    def optionxform(self, optionstr):
        return optionstr