예제 #1
0
 def load_pwd(self):
     """"""
     pwd_set = passwords_handler.get_passwords()
     lines = "\n".join(pwd_set)
     
     if lines:
         self.text_view.setPlainText(lines)
예제 #2
0
 def load_pwd(self):
     """"""
     pwd_set = passwords_handler.get_passwords()
     lines = "\n".join(pwd_set)
     
     if lines:
         buffer = self.text_field.get_buffer()
         buffer.set_text(lines)
예제 #3
0
 def add(self, file_path, dest_path):
     """"""
     id = str(uuid.uuid1())
     passwords_list = passwords_handler.get_passwords()
     th = Extract(file_path, dest_path, passwords_list)
     self.__th_dict[id] = th
     th.start()
     return id
예제 #4
0
    def load_pwd(self):
        """"""
        pwd_set = passwords_handler.get_passwords()
        lines = "\n".join(pwd_set)

        if lines:
            buffer = self.text_field.get_buffer()
            buffer.set_text(lines)
예제 #5
0
 def add(self, file_path, dest_path):
     """"""
     id = str(uuid.uuid1())
     passwords_list = passwords_handler.get_passwords()
     th = Extract(file_path, dest_path, passwords_list)
     self.__th_dict[id] = th
     th.start()
     return id
예제 #6
0
 def start_extract(self, item):
     passwords_list = passwords_handler.get_passwords()
     th = Extract(item.file_path, item.dest_path, passwords_list)
     self.__th_dict[item.id_item] = th
     th.start()
예제 #7
0
 def start_extract(self, item):
     passwords_list = passwords_handler.get_passwords()
     th = Extract(item.file_path, item.dest_path, passwords_list)
     self.__th_dict[item.id_item] = th
     th.start()