Storing the settings as a JSON object in a file would be easy to edit by hand and to parse in Python via the 'json' built-in library, as well as easy to write back out. To me, this seems simpler than the ConfigParser library Python already has. The ConfigParser library still might be the way to go, but JSON merits investigation as well.
Storing the settings as a JSON object in a file would be easy to edit by hand and to parse in Python via the 'json' built-in library, as well as easy to write back out. To me, this seems simpler than the ConfigParser library Python already has. The ConfigParser library still might be the way to go, but JSON merits investigation as well.