Não sei o que eu fiz de errado poderia me ajudar?
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 self.url:
raise ValueError("A URL está vazia")
@property
def url_base(self):
indice_interrogacao = self.url.find('?')
url_base = self.url[:indice_interrogacao]
return url_base
@property
def url_parametros(self):
indice_interrogacao = self.url.find('?')
url_parametros = self.url[indice_interrogacao + 1:]
return url_parametros
@property
def valor_parametro(self, parametro_busca):
indice_parametro = self.url_parametros().find(parametro_busca)
indice_valor = indice_parametro + len(parametro_busca) + 1
indice_e_comercial = self.url_parametros().find('&', indice_valor)
indice_e_comercial_vazio = indice_e_comercial == -1
if indice_e_comercial_vazio:
valor = self.url_parametros()[indice_valor:]
else:
valor = self.url_parametros()[indice_valor:indice_e_comercial]
return valor
extrator_url = ExtratorUrl('bytebank.com/cambio?quantidade=100&moedaOrigem=real&moedaDestino=dolar')
valor_quantidade = extrator_url.valor_parametro('quantidade')
print(valor_quantidade)