Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
from lib.core import ArgumentParser
from lib.controller import *
from lib.output import *
class Program(object):
def __init__(self):
self.script_path = (os.path.dirname(os.path.realpath(__file__)))
self.arguments = ArgumentParser(self.script_path)
self.output = CLIOutput()
self.controller = Controller(self.script_path, self.arguments, self.output)
if __name__ == '__main__':
#from pympler.tracker import SummaryTracker
#tracker = SummaryTracker()
main = Program()
#tracker.print_diff()