diff --git a/__main__.py b/__main__.py index 539cb3d..aaac19b 100644 --- a/__main__.py +++ b/__main__.py @@ -18,9 +18,9 @@ from urls import URL_LIST # loop through the URLs -for page in URL_LIST: +for website in URL_LIST: # query each website and return html, parse the html using Beautiful Soup and store in variable 'soup' - page = requests.get() + page = requests.get(website) soup = BeautifulSoup(page.content, 'html.parser') # take out the
of name and get its value