Esempio n. 1
0
    def __init__(self):
        self.parser = parser()
        self.config = config()
        self.badges = badges()
        self.colors = colors()

        self.colors_script = colors_script()
Esempio n. 2
0
    def __init__(self):
        self.io = io()
        self.colors = colors()

        self.I = self.colors.WHITE + self.colors.BOLD + '[i] ' + self.colors.END
        self.S = self.colors.GREEN + self.colors.BOLD + '[+] ' + self.colors.END
        self.W = self.colors.YELLOW + self.colors.BOLD + '[!] ' + self.colors.END
        self.E = self.colors.RED + self.colors.BOLD + '[-] ' + self.colors.END
        self.P = self.colors.BLUE + self.colors.BOLD + '[*] ' + self.colors.END
        self.Q = self.colors.WHITE + self.colors.BOLD + '[?] ' + self.colors.END
        self.A = self.colors.WHITE + self.colors.BOLD + '[>] ' + self.colors.END
Esempio n. 3
0
    def __init__(self):
        self.io = io()
        self.tip = tip()
        self.jobs = jobs()
        self.execute = execute()
        self.loader = loader()
        self.config = config()
        self.badges = badges()
        self.banner = banner()
        self.colors = colors()
        self.local_storage = local_storage()
        self.modules = modules()
        self.exceptions = exceptions()

        self.history = self.config.path_config['base_paths']['history_path']
Esempio n. 4
0
 def __init__(self):
     self.colors = colors()
     self.local_storage = local_storage()
     self.fmt = fmt()
Esempio n. 5
0
 def __init__(self):
     self.fmt = fmt()
     self.badges = badges()
     self.colors = colors()
     self.parser = parser()
     self.tables = tables()