Learning to scrape a website. "https://www.localharvest.org/" for now. trying to urlopen but gives the above mentioned error. Windows 10 64-64 bit, Python 3.7.1
from urllib.request import urlopen
from bs4 import BeautifulSoup as soup
url = 'https://www.localharvest.org/'
response = urlopen(url)