def process(self): alert("\n[+] Searching in {0}..\n".format(self.name)) while self.start < self.limit: self.search() time.sleep(1) self.start += self.step message("\tSearching {0} results...".format(self.start))
def display_results(self): if not self.results: error("\nNo emails found!") sys.exit(4) alert("\n\n[+] {} emails found:".format(len(self.results)), underline=True) if not self.args.noprint: message(self.results)
def process(self): while self.start < self.limit: self.search() time.sleep(1) self.start += self.step message("\tSearching {0} results...".format(self.start))
def display(self): alert("[+] Available plugins:", underline=True) for module in self: message(module) sys.exit(1)