Python標準のINIファイルパーサ既定動作では、オプション名の大文字/小文字を区別しない(出力時は小文字へ自動変換される)。この既定動作を変更し、大文字/小文字を区別する動作に変更する方法。
import ConfigParser # Python 2.x
import configparser # Pyrhon 3.x
cfgparser = ConfigParser()
cfgparser.optionxform = str
- Python2.7: ConfigParser.optionxform
- Python3.3: configparser.optionxform