Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using ConfigParser to read a file without section name

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 a 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.

like image 904
Escualo Avatar asked May 21 '10 20:05

Escualo


People also ask

What is Configparser Configparser ()?

ConfigParser is a Python class which implements a basic configuration language for Python programs. It provides a structure similar to Microsoft Windows INI files. ConfigParser allows to write Python programs which can be customized by end users easily.

Does Configparser come with Python?

configparser comes from Python 3 and as such it works well with Unicode.


1 Answers

Alex Martelli provided a solution for using ConfigParser to parse .properties files (which are apparently section-less config files).

His solution is a file-like wrapper that will automagically insert a dummy section heading to satisfy ConfigParser's requirements.

like image 55
Will McCutchen Avatar answered Oct 11 '22 00:10

Will McCutchen