Using ConfigParser with Sikuli error

Asked by monica

This is my code

import ConfigParser

config = ConfigParser.ConfigParser()
config.readfp('C:\\Users\\ffi1\\Desktop\\cony.ini')
username1 = config.get('user1','username')
username2 = config.get('user2','username')

and this is the confi.ini file

[user1]
username=Guido Van Rossum
ip = 192.168.0.1
machineName=Guido's Machine
system = Ubuntu

[user2]
username = Bob Marley
ip = 192.168.0.1
machineName= Bob's Machine
system = windows 7

I keep on getting this error
Traceback --- error source first line: module ( function ) statement 286: ConfigParser ( readfp ) File "C:\Users\ffi1\Downloads\sikuli\sikulix.jar\Lib\ConfigParser.py", line 430, in _read

and I don't know what it means or how to fix it. Any help is appreciated. Thank you!

Question information

Language:
English Edit question
Status:
Solved
For:
SikuliX Edit question
Assignee:
No assignee Edit question
Solved by:
RaiMan
Solved:
Last query:
Last reply:
Revision history for this message
monica (monicach15) said :
#1

the error corresponds with this line
config.readfp('C:\\Users\\ffi1\\Desktop\\cony.ini')

Revision history for this message
monica (monicach15) said :
#2

this is the method it is corresponding to the error

ef _read(self, fp, fpname):
        """Parse a sectioned setup file.

        The sections in setup file contains a title line at the top,
        indicated by a name in square brackets (`[]'), plus key/value
        options lines, indicated by `name: value' format lines.
        Continuations are represented by an embedded newline then
        leading whitespace. Blank lines, lines beginning with a '#',
        and just about everything else are ignored.
        """
        cursect = None # None, or a dictionary
        optname = None
        lineno = 0
        e = None # None, or an exception
        while True:
            line = fp.readline()
            if not line:
                break
            lineno = lineno + 1
            # comment or blank line?
            if line.strip() == '' or line[0] in '#;':
                continue
            if line.split(None, 1)[0].lower() == 'rem' and line[0] in "rR":
                # no leading whitespace
                continue
            # continuation line?
            if line[0].isspace() and cursect is not None and optname:
                value = line.strip()
                if value:
                    cursect[optname] = "%s\n%s" % (cursect[optname], value)
            # a section header or option header?
            else:
                # is it a section header?
                mo = self.SECTCRE.match(line)
                if mo:
                    sectname = mo.group('header')
                    if sectname in self._sections:
                        cursect = self._sections[sectname]
                    elif sectname == DEFAULTSECT:
                        cursect = self._defaults
                    else:
                        cursect = {'__name__': sectname}
                        self._sections[sectname] = cursect
                    # So sections can't start with a continuation line
                    optname = None
                # no section header in the file?
                elif cursect is None:
                    raise MissingSectionHeaderError(fpname, lineno, line)
                # an option line?
                else:
                    mo = self.OPTCRE.match(line)
                    if mo:
                        optname, vi, optval = mo.group('option', 'vi', 'value')
                        if vi in ('=', ':') and ';' in optval:
                            # ';' is a comment delimiter only if it follows
                            # a spacing character
                            pos = optval.find(';')
                            if pos != -1 and optval[pos-1].isspace():
                                optval = optval[:pos]
                        optval = optval.strip()
                        # allow empty values
                        if optval == '""':
                            optval = ''
                        optname = self.optionxform(optname.rstrip())
                        cursect[optname] = optval
                    else:
                        # a non-fatal parsing error occurred. set up the
                        # exception but keep going. the exception will be
                        # raised at the end of the file and will contain a
                        # list of all bogus lines
                        if not e:
                            e = ParsingError(fpname)
                        e.append(lineno, repr(line))
        # if any parsing errors occurred, raise an exception
        if e:
            raise e

Revision history for this message
Best RaiMan (raimund-hocke) said :
#3

Traceback --- error source first line: module ( function ) statement 286: ConfigParser ( readfp ) File "C:\Users\ffi1\Downloads\sikuli\sikulix.jar\Lib\ConfigParser.py", line 430, in _read

this not the error description, but only where some error occurs, that you do not give the information for.

please paste the complete error description.

Revision history for this message
monica (monicach15) said :
#4

[error] script [ testingSki ] stopped with error in line 4
[error] AttributeError ( 'str' object has no attribute 'readline' )
[error] --- Traceback --- error source first line: module ( function ) statement 286: ConfigParser ( readfp ) File "C:\Users\ffi1\Downloads\sikuli\sikulix.jar\Lib\ConfigParser.py", line 430, in _read
[error] --- Traceback --- end --------------

Revision history for this message
RaiMan (raimund-hocke) said :
#5

since you said "solved", I suppose you found the problem:
I guess, instead of a string, you must hand over a a file object.