import re
class ExtratorUrl:
def __init__(self, url):
self.url = self.sanitizacao_url(url)
self.valida_url()
def sanitizacao_url(self, url):
if type(url) == str:
return url.strip()
else:
return ""
def valida_url(self):
if not self.url:
raise ValueError("A URL está vazia")
padrao_url = re.compile('(http(s)?://)?(www.)?xe.com(.br)?/pt/')
match = padrao_url.match(self.url)
if not match:
raise ValueError('A URL é inválida!!!')
def get_url_base(self):
indice_interrogacao = self.url.find('?')
url_base = self.url[0: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_comercial = self.get_url_parametros().find('&', indice_valor)
if indice_comercial == -1:
valor = self.get_url_parametros()[indice_valor:]
else:
valor = self.get_url_parametros()[indice_valor: indice_comercial]
return valor
def __len__(self):
return len(self.url)
def __str__(self):
return self.url
def __eq__(self, other):
return self.url == other.url
url = 'https://www.xe.com/pt/currencyconverter/convert/?Amount=100&From=BRL&To=USD' extrator_url = ExtratorUrl(url)
moeda = 5.50 # 1 Dólar = 5.50 moeda_from = extrator_url.get_valor_parametro('From') moeda_to = extrator_url.get_valor_parametro('To') valor_quantidade = extrator_url.get_valor_parametro('Amount')
if moeda_from == 'BRL' and moeda_to == 'USD': valor_conversao = int(valor_quantidade) / moeda print("O valor de R$" + valor_quantidade + " reais é igual a $" + str(valor_conversao) + " dólares.") elif moeda_from == "USD" and moeda_destino == "BRL": valor_conversao = int(valor_quantidade) * moeda print("O valor de $" + valor_quantidade + " dólares é igual a R$" + str(valor_conversao) + " reais.") else: print(f"Câmbio de {moeda_from} para {moeda_to} não está disponível.")