How would you save a simple settings/configuration file in Python?
07:23 29 Sep 2013

I don't care if it's JSON, pickle, YAML, or whatever.

All other implementations I have seen are not forward compatible, so if I have a configuration file, add a new key in the code, and then load that configuration file, it'll just crash.

Are there a simple way to do this?

python json settings config ini