How to set boolean values in an INI configuration file?
There’s no spec for INI files, but for whatever it’s worth, I’ll list the behaviour of a few implementations from languages I know. Python’s built-in configparser module offers a getboolean that behaves as follows: the accepted values … are ‘1’, ‘yes’, ‘true’, and ‘on’, which cause this method to return True, and ‘0’, ‘no’, ‘false’, … Read more