Facade

The Facade pattern creates a simplified interface to some other code:

 
#!/usr/bin/env python

class Facade(object):
    def start(self):
        print( "doing lots of complicated things to start")
    def stop(self):
        print( "doing lots of complicated things to stop")
 

fac = Facade()

fac.start()
fac.stop()