Python standard INI file parser By default, option names are not case sensitive (automatically converted to lowercase when output). How to change this default behavior to a case-sensitive behavior.
import ConfigParser # Python 2.x
import configparser # Pyrhon 3.x
cfgparser = ConfigParser()
cfgparser.optionxform = str
Recommended Posts