Exploring the Framework object

We developed our framework with an object-oriented programming design in mind. This allows us to create compartmentalized and reusable objects. Within our Framework object are the Plugin and Writer objects, which we explored in the proceeding sections. The Framework class is defined on line 49 and extends the object class. In Python 2.X, inheriting from an object that replaces the previous tradition of inheriting nothing has become standard in Python 3.X:

049 class Framework(object):