Boa tarde! Segue resolução do desafio para avaliação. Obrigado!
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):
padrao = re.compile('(http(s)?://)?(www.)?bytebank.com(.br)?/cambio')
match = padrao.match(self.url)
if not self.url or not match:
raise ValueError("URL invá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_separador = self.get_url_parametros().find('&', indice_valor)
if indice_separador == -1:
valor = self.get_url_parametros()[indice_valor:]
else:
valor = self.get_url_parametros()[indice_valor:indice_separador]
return valor
def __len__(self):
return len(self.url)
def __str__(self):
return f'A url é {self.url}\nA base é: {self.get_url_base()}\nOs parâmetros são: {self.get_url_parametros()}'
def converte_valor(self):
DOLAR = 5.50
origem = self.get_valor_parametro("moedaOrigem")
destino = self.get_valor_parametro("moedaDestino")
quantidade = float(self.get_valor_parametro("quantidade"))
if origem == 'dolar':
valor = float(quantidade * DOLAR)
return f'US${quantidade:.2f} convertido em {destino} é R${valor:.2f}'
else:
valor = quantidade/DOLAR
return f'R${quantidade:.2f} convertido em {destino} é US${valor:.2f}'
extrator_url = ExtratorURL('https://www.bytebank.com/cambio?moedaOrigem=real&moedaDestino=dolar&quantidade=100')
print(f'o tamanho da URL é: {len(extrator_url)}')
print(extrator_url)
print(extrator_url.converte_valor())