1 year ago
#386979
Raghu
scrapping data - urlopen error [errno 11001] getaddrinfo Failed
I getting <urlopen error [errno 11001] getaddrinfo Failed> error while trying to scrape data from a website. Can somebody help me with this error. I am new to Python coding.
here is the code :-
from urllib.request import urlopen as uReq
my_url= "https://www.arket.com/en/women/coats-and-jackets.html"
uClient= uReq(my_url)
page_html= uClient.read()
uClient.close()
python
web-scraping
data-science
urllib
urlopen
0 Answers
Your Answer