Which is better for creating a settings file for Python programs, the built-in module (ConfigParser), or the independent project (ConfigObj)?
feedback
|
|
I recently switched from configparser to configobj, and I'm thrilled to have done so. For me, the big difference is configobj's validator. It lets me very easily/succinctly (1) define the type and acceptable values for each entry, and (2) set defaults. Those two features save me a lot of code and prevent a lot from going wrong. Plus, there's really no extra overhead to using configobj in terms of the complexity of my code, and the library is quite small. | |||
|
feedback
|
|
Thus far, I found ConfigParser sufficient any time I used it. Plus, it's an included battery and not a third party library. Though I have to admit, the code samples in the ConfigObj documentation make ConfigParser look really sucksy in comparision. For a script which heavily manipulates .ini files, I'd propably prefer it. | |||
feedback
|