What's better, ConfigObj or ConfigParser?

后端 未结 3 1767
面向向阳花
面向向阳花 2021-02-04 01:07

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

相关标签:
3条回答
  • 2021-02-04 01:30

    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.

    0 讨论(0)
  • 2021-02-04 01:43

    Depending on your Python version, it may be contentious whether this answers your question, but after a short look at ConfigParser and ConfigObj, I settled for configparser, the Python 3 version of ConfigParser. There’s also a backported version on PyPI.

    ConfigParser seemed cumbersome to me, maybe even—dare I say it—unpythonic, and with ConfigObj I encountered an esoteric problem with lists (I’d prefer to be able to align them vertically, since mine get really long), and it didn’t help that the latest version was published more than two years ago. The API of configparser, however, looked as spiffy as that of ConfigObj (albeit not as feature-rich), and when we move to Python 3, I can probably switch to the built-in version easily.

    By the way, it works great so far.

    0 讨论(0)
  • 2021-02-04 01:56

    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.

    0 讨论(0)
提交回复
热议问题