|
|
|
|
|
_parseProperties(self)
Analyse the freshly parsed configuration chain and add the found properties
to the respective sections and keys |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|
|
readfp(self,
filefporlist,
close_fp=True)
Read the configuration from the file like object(s) representing INI files. |
source code
|
|
|
write(self,
close_fp=True)
During initialization in readfp, ExtendedFileInterface objects have been passed in - these
will now be used to write back the current state of the configuration - the files will be
opened for writing if possible. |
source code
|
|
|
flatten(self,
fp)
Copy all our members into a new ConfigAccessor which only has one node, instead of N nodes |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
keyDefault(self,
sectionname,
keyname,
value)
Convenience Function: get key with keyname in first section with sectionname with the key's value being initialized to value if it did not exist. |
source code
|
|
|
keysByName(self,
name)
Returns:
List of (Key,`Section`) tuples of key(s) matching name found in section, or empty list |
source code
|
|
|
|
|
get(self,
key_id,
default=None)
Convenience function allowing to easily specify the key you wish to retrieve
with the option to provide a default value |
source code
|
|
|
|
|
|
|
|
|
|