def salvar_urls(self): if (len(self.url_operacoes)): array = [] array.append('operacoes_url=' + self.url_operacoes[0]) array.append('operacoes_name=' + self.url_operacoes[1]) array.append('saldo_url=' + self.url_operacoes[0]) array.append('saldo_name=' + 'saldo.txt') salvar_arquivo('files//informações.txt', array) self.janela_inicial.iniciar_componentes() self.janela_inicial.focus_force() self.destroy() else: pass
def cadastrar_pessoa(): limpa_tela() print("########## CADASTRO DE PESSOA ##########\n") cpf = input("Informe seu CPF: ") if not dado_in_lista(1, cpf): nome = input("NOME: ") data_nasc = input("DATA DE NASCIMENTO: ") telefone = input("TELEFONE: ") email = input("E-MAIL:") endereco = input("ENDEREÇO: ") print('\n') pessoa = Pessoa(nome, cpf, email, endereco, data_nasc, telefone) salvar_arquivo(pessoa) return cpf return False
def on_closing(self): array = [] array.append(self.coordenadas_mapeadas[:-1]) array.append(self.configuracao_mepeamento[:-1]) arquivo.salvar_arquivo('files//mapeamento.txt', array) if ('x' in dir(self) and 'y' in dir(self) and 'width' in dir(self) and 'height' in dir(self)): array = [] array.append(self.resolucao + '=' + str(self.x) + ',' + str(self.y) + ',' + str(self.width) + ',' + str(self.height)) arquivo.salvar_arquivo('files//posições_saldo.txt', array) keyboard.remove_all_hotkeys() self.destroy() self.frame_principal.confirm_button.config(state='normal') self.frame_principal.captura_button.config(text='Mapear Coordenadas')
def adcionar_saldo(self,string=None): string_numero="" linha_escolhida="" for linha in string.split('\n'): for char in linha: if(char=='$' or char=='s' or char=='S'): linha_escolhida=linha if(linha_escolhida): break for char in linha_escolhida: if (char.isnumeric()): string_numero = string_numero + char elif (char == 'o' or char == 'O'): string_numero = string_numero + '0' if(len(string_numero)>2): self.array_precos.append(float(string_numero[:-2]+'.'+string_numero[-2:])) arquivo.salvar_arquivo(self.url_saldo,[self.array_precos[-1]])