A ConfigParser object specialized for one section
This class has all the get methods that a regular ConfigParser does,
but without requiring a section argument.
Methods
|
|
__init__
get
getboolean
getcolor
getdef
getfloat
getint
options
|
|
__init__
|
__init__ (
self,
section,
config,
)
|
|
get
|
get (
self,
options,
raw=0,
vars=None,
)
|
|
getboolean
|
getboolean ( self, option )
|
|
getcolor
|
getcolor ( self, option )
|
|
getdef
|
getdef (
self,
options,
raw=0,
vars=None,
default=None,
)
|
|
getfloat
|
getfloat ( self, option )
|
|
getint
|
getint ( self, option )
|
|
options
|
options ( self )
|
|