Amigos, executado o código abaixo, me deparei com o seguinte erro:
URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'alura-site-scraping.kerokuapp.com'. (_ssl.c:1108)>
from urllib.request import urlopen
url = 'https://alura-site-scraping.kerokuapp.com/index.php'
response = urlopen(url)
html = response.read()
html
Não consegui identificar onde errei. Podem ajudar?