"""EasyEngine package installation using apt-get module.""" Class EEAptGet(): """Generice apt-get intialisation""" def __init__(): # TODO Common method of apt-get module pass """Installation of packages""" def install(): # TODO Method to install packages pass """Removal of packages""" def remove(): # TODO Method to remove packages pass """Purging of packages""" def purge(): # TODO Method to purge packages pass