Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Closing file opened by ConfigParser

I have the following:

config = ConfigParser()
config.read('connections.cfg')
sections = config.sections()

How can I close the file opened with config.read?

In my case, as new sections/data are added to the config.cfg file, I update my wxtree widget. However, it only updates once, and I suspect it's because config.read leaves the file open.

And while we are at it, what is the main difference between ConfigParser and RawConfigParser?

like image 629
sqram Avatar asked Jun 13 '09 15:06

sqram


2 Answers

ConfigParser.read(filenames) actually takes care of that for you.

While coding I have encountered this issue and found myself asking myself the very same question:

Reading basically means I also have to close this resource after I'm done with it, right?

I read the answer you got here suggesting to open the file yourself and use config.readfp(fp) as an alternative. I looked at the documentation and saw that indeed there is no ConfigParser.close(). So I researched a little more and read the ConfigParser code implementation itself:

def read(self, filenames):
    """Read and parse a filename or a list of filenames.

    Files that cannot be opened are silently ignored; this is
    designed so that you can specify a list of potential
    configuration file locations (e.g. current directory, user's
    home directory, systemwide directory), and all existing
    configuration files in the list will be read.  A single
    filename may also be given.

    Return list of successfully read files.
    """
    if isinstance(filenames, basestring):
        filenames = [filenames]
    read_ok = []
    for filename in filenames:
        try:
            fp = open(filename)
        except IOError:
            continue
        self._read(fp, filename)
        fp.close()
        read_ok.append(filename)
    return read_ok

This is the actual read() method from ConfigParser.py source code. As you can see, 3rd line from the bottom, fp.close() closes the opened resource after its usage in any case. This is offered to you, already included in the box with ConfigParser.read() :)

like image 157
user1555863 Avatar answered Sep 20 '22 19:09

user1555863


Use readfp instead of read:

with open('connections.cfg') as fp:
    config = ConfigParser()
    config.readfp(fp)
    sections = config.sections()
like image 40
Nicolas Dumazet Avatar answered Sep 19 '22 19:09

Nicolas Dumazet