1
resposta

Meu código não roda

Simplesmente comparei meu código com o do professor e está igual, não consegui identificar o porquê de não rodar

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 ("URL está Vazia!")


    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

url = "bytebank.com/cambio?quantidade=100&moedaOrigem=real&moedaDestino=dolar"
extrator_url = ExtratorURL(url)
valor_quantidade = extrator_url.get_valor_parametro("quantidade")
print(valor_quantidade)

erro em questão

1 resposta

Fala Lucas, blz?

Tem um not a mais na função valida_url, ou seja, você causa uma exceção informando que a URL está Vazia! quando a condição é not self.url == "" (URL não vazia)

    def valida_url(self):
        if not self.url == "":
            raise ValueError ("URL está Vazia!")

Tente assim:

    def valida_url(self):
        if self.url == "":
            raise ValueError ("URL está Vazia!")

Abraço