Consegui aplicar ao projeto principal, mas gostaria de saber o motivo do pycharm apontar:
Após sanar essa duvida também gostaria de saber se fiz corretamente e como posso melhorar, acho que também estou com dificuldades de entender quando devo utilizar o return, alguem pode me ajudar?
import re
class ExtratorURL:
def __init__(self, url):
self.url = self.sanitiza_url(url)
self.valida_url()
def sanitiza_url(self, url):
if type(url) == str:
return url.strip()
else:
return ""
def valida_url(self):
if not bool(self.url):
raise ValueError("A URL está vazia")
padrao_url = re.compile('(http(s)?://)?(www.)?bytebank.com(.br)?/cambio')
match = padrao_url.match(url)
if not match:
raise ValueError("A URL NÃO É VÁLIDA")
def get_url_base(self):
indice_interrogacao = self.url.find('?')
url_base = self.url[:indice_interrogacao]
return url_base
def get_url_parametros(self):
indice_interrogacao = self.url.find('?')
url_parametros = self.url[indice_interrogacao + 1:]
return url_parametros
def get_valor_parametro(self, parametro_busca):
indice_parametro = self.get_url_parametros().find(parametro_busca)
indice_valor = indice_parametro + len(parametro_busca) + 1
indice_e_comercial = self.get_url_parametros().find('&', indice_valor)
if indice_e_comercial == -1:
valor = self.get_url_parametros()[indice_valor:]
else:
valor = self.get_url_parametros()[indice_valor:indice_e_comercial]
return valor
def __len__(self):
return len(self.url)
def __str__(self):
return self.url + "\n" + "Parâmetros: " + self.get_url_parametros() + "\n" + "URL Base: " + self.get_url_base()
def __eq__(self, other):
return self.url == other.url
def teste_moeda(self):
if moeda_origem == 'real' and moeda_destino == 'dolar':
conversao = int(quantidade) * valor_dolar
print(f'O valor do dolar convertido em real é {conversao}')
return conversao
elif moeda_origem == "dolar" and moeda_destino == "real":
conversao = int(quantidade) // valor_dolar
print(f'O valor do real convertido em dolar é {conversao}')
return conversao
else:
return ValueError('Os parâmetros passados podem não corresponder com o esperado pelo programa')
url = "bytebank.com/cambio?quantidade=100&moedaOrigem=real&moedaDestino=dolar"
extrator_url = ExtratorURL(url)
moeda_origem = extrator_url.get_valor_parametro("moedaOrigem")
moeda_destino = extrator_url.get_valor_parametro("moedaDestino")
quantidade = extrator_url.get_valor_parametro("quantidade")
valor_dolar = 5.50
ExtratorURL.teste_moeda(valor_dolar)