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
I ran into same problem more than once. I love the idea of python file(s) as settings files, it's just simple, elegant and all fellow python devs like it. Same time not really convinced with execfile idea.
So I went ahead and created Converge.
It supports some advanced options but at it's heart it simple python module as settings file.
It's as simple as
default_settings.py, prod_settings.pypip install convergeimport settings