Hi there,
I am trying to access a webpage using Python.
I am trying to access a webpage using Python.
import urllib.request
page = urllib.request.urlopen("https://www.sikayetvar.com/arcelik").read()
print (page)This code gives the following error:Error:urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1045)>I am new to this programming language and I would be very grateful if you guys could help. Thank you in advance
