class documentation

class SerializableConfigParser(configparser.ConfigParser, object):

View In Hierarchy

Simple wrapper over ConfigParse that allows serialization.

This class is basically configparser.ConfigParser with two additional methods that allow it to serialize/unserialize to/from a buffer.

Class Method Loads Load data from a string.
Method Dumps Dump this instance and return the string representation.
Method get Undocumented
@classmethod
def Loads(cls, data):

Load data from a string.

def Dumps(self):

Dump this instance and return the string representation.

def get(self, section, option, **kwargs):

Undocumented