I need to store configurations (key/value) for a Python application and I am searching for the best way to store these configurations in a file.
I run into Python\'s
Check out ConfigObj, its the slickest method I've found so far, and definitely more flexible than ConfigParser. Personally I'm not a fan of YAML based because its 'flexibility' makes it difficult to use with tools like Augeas.