Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1000817
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T07:34:22+00:00 2026-05-16T07:34:22+00:00

Which is better for creating a settings file for Python programs, the built-in module

  • 0

Which is better for creating a settings file for Python programs, the built-in module (ConfigParser) or the independent project (ConfigObj), or using the YAML data serialization format? I have heard that ConfigObj is easier to use than ConfigParser, even though it is not a built-in library. I have also read that PyYAML is easy to use, though YAML takes a bit of time to use. Ease of implementation aside, which is the best option for creating a settings/configuration file?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T07:34:22+00:00Added an answer on May 16, 2026 at 7:34 am

    Using ConfigObj is at least very straightforward and ini files in general are much simpler (and more widely used) than YAML. For more complex cases, including validation, default values and types, ConfigObj provides a way to do this through configspec validation.

    Simple code to read an ini file with ConfigObj:

    from configobj import ConfigObj
    
    conf = ConfigObj('filename.ini')
    section = conf['section']
    value = section['value']
    

    It automatically handles list values for you and allows multiline values. If you modify the config file you can write it back out whilst preserving order and comments.

    See these articles for more info, including examples of the type validation:

    • http://www.voidspace.org.uk/python/articles/configobj.shtml
    • http://www.blog.pythonlibrary.org/2010/01/01/a-brief-configobj-tutorial/
    • http://showmedo.com/videotutorials/video?name=10620000&fromSeriesID=1062
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any considerations to determine which is better practice for creating an object
When creating a 3D array in C#, which is a better way to create
I am creating a program which has an installer-like interface. Is it better to
I have few settings which I could place in a separate XML file and
Which is better? 1. = link_to Page, /page, :class => button, :data => {:theme
which is better or faster, A or B? std::deque<Myclass> queue; ... // do something
Which constitutes better object oriented design? Class User { id {get;set} } Class Office
Which is better? if not var: var = get_var() (or) var = var or
Which is better way to use jQuery() ? I've heard that jQuery(element) doesn't ruin
Which is better in respect to performance and memory utilization? // + Operator oMessage.Subject

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.