Which is better for creating a settings file for Python programs, the built-in module (ConfigParser), or the independent project (ConfigObj)?

link|improve this question
Also, is YAML any good? – Apocryphon Aug 7 '10 at 9:13
"Better" depends on the context. Simple, complicated? What kind of settings? – detly Aug 10 '10 at 1:42
1  
Apocryphon: may I suggest you editing the question to something like: "What are the con's and pro's of ConfigParser, ConfigObj, YAML" – bgbg Oct 4 '11 at 9:55
feedback

2 Answers

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.

link|improve this answer
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.

link|improve this answer
I agree. I have found that the features I was missing in ConfigParser, are in ArgParse which is also an included battery since 2.7. Where I have python 2.7 available, I have migrated to ArgParse. – Hernan Aug 31 '11 at 9:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.