Good Morning,
I'm re-factoring a script which will have (literally) dozens to hundreds of user configurable parameters.
The first step is, of course, to implement a GUI with check-boxes for which parameters to turn on and off, and a few entry boxes for specific configuration parameters,
My initial thought is to use something like Python's ConfigParser module, with two files. One default.cfg which does not change (so the configuration can be reset) and a second file which is dynamically changed based on what's selected/entered into the GUI (so it's persistent).
I'm wondering if there's a more elegant and pythonic way to accomplish this.
Thanks!