4 ms·
What about something like.. defaults = load_stored_config_to_dict('example.conf') parser.add_option( "-q", "--quiet", acti
by mr_dbr 17y ago
What about something like..
defaults = load_stored_config_to_dict('example.conf')
parser.add_option(
"-q",
"--quiet",
action="store_false",
dest="verbose",
default=defaults['quiet'],
help="don't print status messages to stdout")
- danohuiginn 17y agoyeah, that's not a bad way of doing it. I ended up with something more convoluted, partly because of the catch-22 situation of wanting to be able to specify the config file from the command-line. More discussion of this problem: http://deadbraincells.org/configopt/docs/configopt.html http://deadbraincells.org/configopt/docs/configopt.html http://wiki.python.org/moin/ConfigParserShootout#ConfigParser.2CoptparseMarriage http://wiki.python.org/moin/ConfigParserShootout#ConfigParse...