views:

64

answers:

1

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

A: 

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.

delnan