Using Python's ConfigParser to read a file without section name

Posted by Arrieta on Stack Overflow See other posts from Stack Overflow or by Arrieta
Published on 2010-05-21T20:01:34Z Indexed on 2010/05/21 21:40 UTC
Read the original article Hit count: 294

Hello:

I am using ConfigParser to read the runtime configuration of a script.

I would like to have the flexibility of not providing a section name (there are scripts which are simple enough; they don't need a 'section'). ConfigParser will throw the NoSectionError exception, and will not accept the file.

How can I make ConfigParser simply retrieve the (key, value) tuples of a config file without section names? For instance:

key1=val1
key2:val2

I would rather not write to the config file.

© Stack Overflow or respective owner

Related posts about python

Related posts about configuration-files