The BaseClassΒΆ

A module for base classes that have common methods to inherit.

Just logging for now.

BaseClass o-- logging.Logger
BaseClass : Logger

BaseClass() This class holds the minimum common features.

Example Use:

class TestClass(BaseClass):
    def __init__(self):
        super(TestClass, self).__init__()

t = TestClass()
t.logger.info("This message will get sent to the logger as INFO")